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