mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix(server): delete large album (#11042)
fix: large album asset operations
This commit is contained in:
parent
f0d1dbccf4
commit
66fae76af2
5 changed files with 52 additions and 22 deletions
|
|
@ -30,6 +30,6 @@ export interface IAlbumRepository extends IBulkAsset {
|
|||
getAll(): Promise<AlbumEntity[]>;
|
||||
create(album: Partial<AlbumEntity>): Promise<AlbumEntity>;
|
||||
update(album: Partial<AlbumEntity>): Promise<AlbumEntity>;
|
||||
delete(album: AlbumEntity): Promise<void>;
|
||||
delete(id: string): Promise<void>;
|
||||
updateThumbnails(): Promise<number | undefined>;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue