Select the types of activity you want to include in your feed.
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