blob: 1b9a6b8c05fda5f1f50ac1d06ba58329551b60c4 (
plain)
1
2
3
4
5
6
7
8
9
|
import config from '../../../config';
import { ILocalUser } from '../../../models/entities/user';
export default (user: ILocalUser, target: any, object: any) => ({
type: 'Remove',
actor: `${config.url}/users/${user.id}`,
target,
object
});
|