this repo has no description
0
fork

Configure Feed

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

at main 11 lines 153 B view raw
1let rtype = event?.commit?.record["$type"]; 2 3switch rtype { 4 "app.bsky.feed.post" => { 5 return build_aturi(event); 6 } 7 // noop 8 _ => { } 9} 10 11false