mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 11:15:54 +02:00
33529d1d9b
* refactor: AuthUserDto => AuthDto * refactor: reorganize auth-dto * refactor: AuthUser() => Auth()
30 lines
810 B
TypeScript
30 lines
810 B
TypeScript
import { AuditEntity, DatabaseAction, EntityType } from '@app/infra/entities';
|
|
import { authStub } from './auth.stub';
|
|
|
|
export const auditStub = {
|
|
create: Object.freeze<AuditEntity>({
|
|
id: 1,
|
|
entityId: 'asset-created',
|
|
action: DatabaseAction.CREATE,
|
|
entityType: EntityType.ASSET,
|
|
ownerId: authStub.admin.user.id,
|
|
createdAt: new Date(),
|
|
}),
|
|
update: Object.freeze<AuditEntity>({
|
|
id: 2,
|
|
entityId: 'asset-updated',
|
|
action: DatabaseAction.UPDATE,
|
|
entityType: EntityType.ASSET,
|
|
ownerId: authStub.admin.user.id,
|
|
createdAt: new Date(),
|
|
}),
|
|
delete: Object.freeze<AuditEntity>({
|
|
id: 3,
|
|
entityId: 'asset-deleted',
|
|
action: DatabaseAction.DELETE,
|
|
entityType: EntityType.ASSET,
|
|
ownerId: authStub.admin.user.id,
|
|
createdAt: new Date(),
|
|
}),
|
|
};
|