blob: dd49193424a9496b88985f81cc0381ccbad47d9c (
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
});
|