this repo has no description
0
fork

Configure Feed

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

at main 13 lines 286 B view raw
1let rtype = event?.commit?.record["$type"]; 2 3if rtype != "app.bsky.feed.post" { 4 return false; 5} 6 7let root_uri = event?.commit?.record?.reply?.root?.uri; 8 9if `${root_uri}`.starts_with("at://did:plc:cbkjy5n7bk3ax2wplmtjofq2/app.bsky.feed.post/") { 10 return build_aturi(event); 11} 12 13false