mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
30 lines
795 B
TypeScript
30 lines
795 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.id,
|
||
|
createdAt: new Date(),
|
||
|
}),
|
||
|
update: Object.freeze<AuditEntity>({
|
||
|
id: 2,
|
||
|
entityId: 'asset-updated',
|
||
|
action: DatabaseAction.UPDATE,
|
||
|
entityType: EntityType.ASSET,
|
||
|
ownerId: authStub.admin.id,
|
||
|
createdAt: new Date(),
|
||
|
}),
|
||
|
delete: Object.freeze<AuditEntity>({
|
||
|
id: 3,
|
||
|
entityId: 'asset-deleted',
|
||
|
action: DatabaseAction.DELETE,
|
||
|
entityType: EntityType.ASSET,
|
||
|
ownerId: authStub.admin.id,
|
||
|
createdAt: new Date(),
|
||
|
}),
|
||
|
};
|