From de2a1baf8483cfde9e7dc77b02e89e6d988a400b Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 10 Mar 2026 02:37:18 -0700 Subject: [PATCH] fix(rsocials): serve campaign planner (n8n flow builder) at /campaigns The /campaigns route was serving folk-campaign-manager (simple list view) instead of folk-campaign-planner (the drag-and-drop flow canvas). The planner was fully built but had no route. Co-Authored-By: Claude Opus 4.6 --- modules/rsocials/mod.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/rsocials/mod.ts b/modules/rsocials/mod.ts index de6a554..a172d65 100644 --- a/modules/rsocials/mod.ts +++ b/modules/rsocials/mod.ts @@ -523,14 +523,14 @@ routes.get("/threads", (c) => { routes.get("/campaigns", (c) => { const space = c.req.param("space") || "demo"; return c.html(renderShell({ - title: `Campaigns — rSocials | rSpace`, + title: `Campaign Planner — rSocials | rSpace`, moduleId: "rsocials", spaceSlug: space, modules: getModuleInfoList(), theme: "dark", - body: ``, - styles: ``, - scripts: ``, + body: ``, + styles: ``, + scripts: ``, })); });