minor renamery

This commit is contained in:
mgabor
2024-04-19 21:22:04 +02:00
parent 5f0a2b5d6a
commit 29dd9ff4d8
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ export class AlbumEntity {
@Column({ comment: 'Asset ID to be used as thumbnail', nullable: true })
albumThumbnailAssetId!: string | null;
@OneToMany(() => AlbumUserEntity, (permission) => permission.album)
@OneToMany(() => AlbumUserEntity, ({ album }) => album)
albumUsers!: AlbumUserEntity[];
@ManyToMany(() => AssetEntity, (asset) => asset.albums)