refactor: migrate library spec to factories (#16711)

This commit is contained in:
Jason Rasmussen
2025-03-08 13:44:36 -05:00
committed by GitHub
parent fd46d43726
commit 1e127ae3a1
9 changed files with 407 additions and 535 deletions

View File

@@ -26,7 +26,7 @@ export class LibraryEntity {
assets!: AssetEntity[];
@ManyToOne(() => UserEntity, { onDelete: 'CASCADE', onUpdate: 'CASCADE', nullable: false })
owner!: UserEntity;
owner?: UserEntity;
@Column()
ownerId!: string;