chore(server): remove getByDate from asset repo (#8211)

* remove getByDate

* remove unused import
This commit is contained in:
Mert 2024-03-23 00:20:16 -04:00 committed by GitHub
parent 6e93ddf2f1
commit 604b8ff17c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 0 additions and 114 deletions

View file

@ -139,7 +139,6 @@ export const IAssetRepository = 'IAssetRepository';
export interface IAssetRepository {
create(asset: AssetCreate): Promise<AssetEntity>;
getByDate(ownerId: string, date: Date): Promise<AssetEntity[]>;
getByIds(
ids: string[],
relations?: FindOptionsRelations<AssetEntity>,