rename to albumUsers in album entity as well

This commit is contained in:
mgabor
2024-04-19 20:18:53 +02:00
parent 739dc56639
commit 5535e19a9d
9 changed files with 172 additions and 172 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ export class AlbumEntity {
albumThumbnailAssetId!: string | null;
@OneToMany(() => AlbumUserEntity, (permission) => permission.album)
sharedUsers!: AlbumUserEntity[];
albumUsers!: AlbumUserEntity[];
@ManyToMany(() => AssetEntity, (asset) => asset.albums)
@JoinTable()