chore: remove unused album repository methods (#12758)

This commit is contained in:
Jason Rasmussen 2024-09-17 17:02:11 -04:00 committed by GitHub
parent 1e6ef5c9e4
commit efe45fd0aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 1 additions and 251 deletions

View file

@ -174,7 +174,6 @@ export interface IAssetRepository {
withDeleted?: boolean,
): Paginated<AssetEntity>;
getRandom(userIds: string[], count: number): Promise<AssetEntity[]>;
getFirstAssetForAlbumId(albumId: string): Promise<AssetEntity | null>;
getLastUpdatedAssetForAlbumId(albumId: string): Promise<AssetEntity | null>;
getExternalLibraryAssetPaths(pagination: PaginationOptions, libraryId: string): Paginated<AssetPathEntity>;
getByLibraryIdAndOriginalPath(libraryId: string, originalPath: string): Promise<AssetEntity | null>;