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 ArtService {
return artPieces.map((art) => ({
...art,
description: art.description || undefined,
tags: art.tags ?? [],
links: art.links ?? [],
dateAdded: art.dateAdded,
createdAt: art.createdAt,
updatedAt: art.updatedAt,
@@ -42,6 +44,8 @@ export class ArtService {
return {
...art,
description: art.description || undefined,
tags: art.tags ?? [],
links: art.links ?? [],
dateAdded: art.dateAdded,
createdAt: art.createdAt,
updatedAt: art.updatedAt,
@@ -59,6 +63,8 @@ export class ArtService {
return {
...art,
description: art.description || undefined,
tags: art.tags ?? [],
links: art.links ?? [],
dateAdded: art.dateAdded,
createdAt: art.createdAt,
updatedAt: art.updatedAt,
@@ -77,6 +83,8 @@ export class ArtService {
return {
...art,
description: art.description || undefined,
tags: art.tags ?? [],
links: art.links ?? [],
dateAdded: art.dateAdded,
createdAt: art.createdAt,
updatedAt: art.updatedAt,