blob: 1d5d2ffe7038963ba6007cc232a35d3cb18d1cd9 (
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
});
|