blob: 159a486e08acd687c5759ac4a9117c6e57399da6 (
plain)
1
2
3
4
5
6
7
8
|
import config from '@/config/index.js';
import { User } from '@/models/entities/user.js';
export default (object: any, user: { id: User['id']; host: null }) => ({
type: 'Delete',
actor: `${config.url}/users/${user.id}`,
object
});
|