mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:17:11 -05: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(),
 | 
						|
  }),
 | 
						|
};
 |