refactor: remove user entity (#17498)

This commit is contained in:
Zack Pollard 2025-04-10 15:53:21 +01:00 committed by GitHub
parent 9e49783e49
commit 94dba29298
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 145 additions and 157 deletions

View file

@ -1,9 +1,7 @@
import { AssetEntity } from 'src/entities/asset.entity';
import { UserEntity } from 'src/entities/user.entity';
export class StackEntity {
id!: string;
owner!: UserEntity;
ownerId!: string;
assets!: AssetEntity[];
primaryAsset!: AssetEntity;