fix(server): user delete with stacked assets (#10642)

This commit is contained in:
Jason Rasmussen 2024-06-26 09:29:52 -04:00 committed by GitHub
parent 8a445cac07
commit 63041674c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 64 additions and 12 deletions

View file

@ -7,4 +7,5 @@ export interface IAssetStackRepository {
update(asset: Pick<AssetStackEntity, 'id'> & Partial<AssetStackEntity>): Promise<AssetStackEntity>;
delete(id: string): Promise<void>;
getById(id: string): Promise<AssetStackEntity | null>;
deleteAll(userId: string): Promise<void>;
}