mirror of
https://github.com/immich-app/immich.git
synced 2024-11-30 09:47:31 +02:00
15 lines
415 B
TypeScript
15 lines
415 B
TypeScript
import { AuditEntity } from 'src/entities/audit.entity';
|
|
import { DatabaseAction, EntityType } from 'src/enum';
|
|
import { authStub } from 'test/fixtures/auth.stub';
|
|
|
|
export const auditStub = {
|
|
delete: Object.freeze<AuditEntity>({
|
|
id: 3,
|
|
entityId: 'asset-deleted',
|
|
action: DatabaseAction.DELETE,
|
|
entityType: EntityType.ASSET,
|
|
ownerId: authStub.admin.user.id,
|
|
createdAt: new Date(),
|
|
}),
|
|
};
|