[pn] stub endpoint

This commit is contained in:
Devin Zuczek
2026-08-19 17:35:38 -04:00
parent 6916ed2557
commit 6add3437cf
2 changed files with 34 additions and 0 deletions
@@ -87,6 +87,24 @@ const app = new Hono<App>()
return c.json(NOTIFICATION_CATEGORIES)
})
// The caller's CRM configuration — the campaign/messaging settings the client fetches on
// startup before it will ask about anything else here. An object, not an envelope.
//
// STUB: there is no CRM behind this, so the config is EMPTY rather than invented. An
// empty object is the honest answer and the client reads it as "nothing configured";
// made-up keys would switch on messaging paths that have nothing to serve them. Unlike
// `/config/categories` there is no visible text to mark as a stub — nothing here is
// rendered — so the marker stays in this comment.
//
// Auth-gated because the route is `me`-scoped, like `/preferences` below: the config
// belongs to the caller even while the answer is the same for everyone.
.get('/crm/me/config/v3', async (c) => {
const accountId = await authedId(c)
if (accountId === null) return unauthorized(c)
return c.json({})
})
// The caller's own notification preferences — which categories they have muted, by
// CategoryId (the ids `/config/categories` above hands out).
//
@@ -112,3 +112,19 @@ it('401s the preferences read without a bearer token', async () => {
expect(res.status).toBe(401)
expect(await res.text()).toBe('')
})
it('serves the callers CRM config', async () => {
const res = await SELF.fetch(`${ORIGIN}/crm/me/config/v3`, { headers: await bearer('205') })
expect(res.status).toBe(200)
expect(res.headers.get('content-type')).toContain('application/json')
// Empty rather than invented: there is no CRM behind this, and made-up keys would switch
// on client messaging paths with nothing to serve them.
expect(await res.json()).toEqual({})
})
it('401s the CRM config read without a bearer token', async () => {
// `me`-scoped, so it needs a token even though the answer is the same for everyone.
const res = await SELF.fetch(`${ORIGIN}/crm/me/config/v3`)
expect(res.status).toBe(401)
expect(await res.text()).toBe('')
})