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
at main 30 lines 463 B view raw
1meta { 2 name: Get Forum Metadata 3 type: http 4 seq: 1 5} 6 7get { 8 url: {{appview_url}}/api/forum 9} 10 11assert { 12 res.status: eq 200 13 res.body.did: isDefined 14 res.body.name: isDefined 15} 16 17docs { 18 Retrieve forum metadata (singleton record). 19 20 Returns: 21 { 22 "id": "1", 23 "did": "did:plc:...", 24 "name": "Forum Name", 25 "description": "Forum description", 26 "indexedAt": "2024-01-01T00:00:00.000Z" 27 } 28 29 Returns 404 if forum has not been initialized. 30}