sharkey/src/remote/activitypub/renderer/delete.ts

9 lines
215 B
TypeScript
Raw Normal View History

2018-08-25 14:52:35 +09:00
import config from '../../../config';
2018-12-19 21:20:25 +09:00
import { ILocalUser } from '../../../models/user';
2018-08-25 14:52:35 +09:00
export default (object: any, user: ILocalUser) => ({
2018-05-28 14:39:46 +09:00
type: 'Delete',
2018-08-25 14:52:35 +09:00
actor: `${config.url}/users/${user._id}`,
2018-05-28 14:39:46 +09:00
object
});