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