refactor: view repository (#15496)

This commit is contained in:
Jason Rasmussen
2025-01-21 13:26:13 -05:00
committed by GitHub
parent 5171630b98
commit ccf6d71c3c
9 changed files with 24 additions and 24 deletions

View File

@@ -1,8 +0,0 @@
import { AssetEntity } from 'src/entities/asset.entity';
export const IViewRepository = 'IViewRepository';
export interface IViewRepository {
getAssetsByOriginalPath(userId: string, partialPath: string): Promise<AssetEntity[]>;
getUniqueOriginalPaths(userId: string): Promise<string[]>;
}