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