WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(appview): include cid in GET /api/themes/:rkey response (ATB-53)

Malpercio 33536b7c f3a1ecb2

+2
+1
apps/appview/src/routes/__tests__/themes.test.ts
··· 189 189 expect(body.fontUrls).toEqual(["https://fonts.googleapis.com/css2?family=Space+Grotesk"]); 190 190 expect(body.uri).toContain("/space.atbb.forum.theme/3lblfulltest"); 191 191 expect(body.indexedAt).toBeDefined(); 192 + expect(body.cid).toBe("bafyfull"); 192 193 }); 193 194 194 195 it("returns null for optional fields when not set", async () => {
+1
apps/appview/src/routes/themes.ts
··· 22 22 return { 23 23 id: serializeBigInt(theme.id), 24 24 uri: `at://${theme.did}/space.atbb.forum.theme/${theme.rkey}`, 25 + cid: theme.cid, 25 26 name: theme.name, 26 27 colorScheme: theme.colorScheme, 27 28 tokens: theme.tokens,