Sharkey/src/remote/activitypub/renderer/undo.ts

9 lines
228 B
TypeScript
Raw Normal View History

2018-08-25 14:46:47 +09:00
import config from '../../../config';
2018-12-19 21:20:25 +09:00
import { ILocalUser, IUser } from '../../../models/user';
2018-08-25 14:46:47 +09:00
export default (object: any, user: ILocalUser | IUser) => ({
2018-04-03 17:18:06 +09:00
type: 'Undo',
2018-08-25 14:46:47 +09:00
actor: `${config.url}/users/${user._id}`,
2018-04-03 17:18:06 +09:00
object
});