feat: add tags and links

This commit is contained in:
2026-02-04 19:49:27 -08:00
parent 9902c5ad45
commit b9f33bc055
21 changed files with 1873 additions and 31 deletions
+8
View File
@@ -23,6 +23,8 @@ export class ShowService {
status: show.status as unknown as ShowStatus,
dateAdded: show.dateAdded,
dateCompleted: show.dateCompleted || undefined,
tags: show.tags ?? [],
links: show.links ?? [],
createdAt: show.createdAt,
updatedAt: show.updatedAt,
}));
@@ -41,6 +43,8 @@ export class ShowService {
status: show.status as unknown as ShowStatus,
dateAdded: show.dateAdded,
dateCompleted: show.dateCompleted || undefined,
tags: show.tags ?? [],
links: show.links ?? [],
createdAt: show.createdAt,
updatedAt: show.updatedAt,
};
@@ -61,6 +65,8 @@ export class ShowService {
status: show.status as unknown as ShowStatus,
dateAdded: show.dateAdded,
dateCompleted: show.dateCompleted || undefined,
tags: show.tags ?? [],
links: show.links ?? [],
createdAt: show.createdAt,
updatedAt: show.updatedAt,
};
@@ -86,6 +92,8 @@ export class ShowService {
status: show.status as unknown as ShowStatus,
dateAdded: show.dateAdded,
dateCompleted: show.dateCompleted || undefined,
tags: show.tags ?? [],
links: show.links ?? [],
createdAt: show.createdAt,
updatedAt: show.updatedAt,
};