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