blob: 46f937f61dbe6d017c2dc45fb13757bea0b70576 (
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: 'Add',
actor: `${config.url}/users/${user.id}`,
target,
object
});
|