Retro Bulletin Board Systems on atproto. Web app and TUI. lazy mirror of alyraffauf/atbbs atbbs.xyz
forums python tui atproto bbs
3
fork

Configure Feed

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

at master 14 lines 458 B view raw
1/** Field length limits from the atbbs lexicons. */ 2 3export const SITE_NAME = 100; 4export const SITE_DESCRIPTION = 1000; 5export const SITE_INTRO = 5000; 6export const BOARD_NAME = 100; 7export const BOARD_DESCRIPTION = 500; 8export const POST_TITLE = 300; 9export const POST_BODY = 10000; 10export const ATTACHMENT_NAME = 256; 11export const MAX_ATTACHMENTS = 10; 12export const PROFILE_NAME = 100; 13export const PROFILE_PRONOUNS = 50; 14export const PROFILE_BIO = 1000;