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