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.

fmt

+18 -4
+18 -4
web/src/router/loaders.ts
··· 244 244 ...threads.map((tr) => { 245 245 const v = tr.value as unknown as XyzAtboardsThread.Main; 246 246 return fetchBacklinkItems( 247 - tr.uri, `${REPLY}:subject`, did, "reply", v.title ?? "", tr.uri, 247 + tr.uri, 248 + `${REPLY}:subject`, 249 + did, 250 + "reply", 251 + v.title ?? "", 252 + tr.uri, 248 253 ); 249 254 }), 250 255 ...replies.map((rr) => { 251 256 const v = rr.value as unknown as XyzAtboardsReply.Main; 252 257 return fetchBacklinkItems( 253 - rr.uri, `${REPLY}:quote`, did, "quote", "", v.subject ?? "", 258 + rr.uri, 259 + `${REPLY}:quote`, 260 + did, 261 + "quote", 262 + "", 263 + v.subject ?? "", 254 264 ); 255 265 }), 256 266 ]); ··· 343 353 ]); 344 354 345 355 const banRkeys = buildRkeyMap<XyzAtboardsBan.Main>( 346 - banRecs, banSchema, (v) => v.did, 356 + banRecs, 357 + banSchema, 358 + (v) => v.did, 347 359 ); 348 360 const hideRkeys = buildRkeyMap<XyzAtboardsHide.Main>( 349 - hideRecs, hideSchema, (v) => v.uri, 361 + hideRecs, 362 + hideSchema, 363 + (v) => v.uri, 350 364 ); 351 365 352 366 let bannedHandles: Record<string, string> = {};