feat: album order per user

This commit is contained in:
Alex Tran
2026-05-03 14:12:04 -05:00
parent 3d320d9751
commit 59384b90b0
12 changed files with 137 additions and 37 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ export class AlbumFactory {
#albumUsers: AlbumUserFactory[] = [];
#assets: AssetFactory[] = [];
private constructor(private readonly value: Selectable<AlbumTable>) {}
private constructor(private readonly value: Selectable<AlbumTable> & { order: AssetOrder }) {}
static create(dto: AlbumLike = {}) {
return AlbumFactory.from(dto).build();