refactor(server): stack owner (#10900)

This commit is contained in:
Jason Rasmussen
2024-07-05 16:16:53 -04:00
committed by GitHub
parent f6cafa3290
commit e1f25b44d2
14 changed files with 46 additions and 34 deletions

View File

@@ -3,9 +3,8 @@ import { StackEntity } from 'src/entities/stack.entity';
export const IStackRepository = 'IStackRepository';
export interface IStackRepository {
create(stack: Partial<StackEntity>): Promise<StackEntity>;
create(stack: Partial<StackEntity> & { ownerId: string }): Promise<StackEntity>;
update(stack: Pick<StackEntity, 'id'> & Partial<StackEntity>): Promise<StackEntity>;
delete(id: string): Promise<void>;
getById(id: string): Promise<StackEntity | null>;
deleteAll(userId: string): Promise<void>;
}