T3/Phase 2B-4: port notes routes to Hono (~7 routes) + wikilink service + route registration

This commit is contained in:
Hermes
2026-08-01 01:38:25 +00:00
parent ac90c1bd6d
commit 23d2a96dd1
6 changed files with 699 additions and 5 deletions
+1 -1
View File
@@ -22,5 +22,5 @@ export async function recordActivity(params: RecordActivityParams): Promise<void
});
const payload = JSON.stringify({ type: entityType, action, id: entityId, workspace_id: workspaceId });
await sql`SELECT pg_notify(project_e_events, ${payload}::text)`;
await sql`SELECT pg_notify('project_e_events', ${payload}::text)`;
}