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
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>;
}