From 9970a6272800e16f02f4d3849f4ecb63c8a16e16 Mon Sep 17 00:00:00 2001 From: Sweets Sweetman Date: Mon, 30 Mar 2026 17:38:38 -0500 Subject: [PATCH] feat: add album-record-store to content templates Register the new template name so the API accepts it in POST /api/content/create requests. Co-Authored-By: Claude Opus 4.6 (1M context) --- lib/content/contentTemplates.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/content/contentTemplates.ts b/lib/content/contentTemplates.ts index 7d0653e3..179c7453 100644 --- a/lib/content/contentTemplates.ts +++ b/lib/content/contentTemplates.ts @@ -20,6 +20,11 @@ export const CONTENT_TEMPLATES: ContentTemplate[] = [ description: "Small venue concert", defaultLipsync: false, }, + { + name: "album-record-store", + description: "Album art on vinyl in a NYC record store", + defaultLipsync: false, + }, ]; /** Derived from the first entry in CONTENT_TEMPLATES to avoid string duplication. */