Parakeet is a Rust-based Bluesky AppServer aiming to implement most of the functionality required to support the Bluesky client
appview atproto bluesky rust appserver
69
fork

Configure Feed

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

at d3c0c5d893c681bea52b3e0f9a22ed02e2bf1305 18 lines 866 B view raw
1diff --git a/parakeet-db/src/schema.rs b/parakeet-db/src/schema.rs 2index 59f65d9..a4219d5 100644 3--- a/parakeet-db/src/schema.rs 4+++ b/parakeet-db/src/schema.rs 5@@ -364,11 +364,13 @@ diesel::joinable!(post_embed_images -> posts (post_uri)); 6 diesel::joinable!(post_embed_record -> posts (post_uri)); 7 diesel::joinable!(post_embed_video -> posts (post_uri)); 8 diesel::joinable!(post_embed_video_captions -> posts (post_uri)); 9+diesel::joinable!(postgates -> posts (post_uri)); 10 diesel::joinable!(posts -> actors (did)); 11 diesel::joinable!(profiles -> actors (did)); 12 diesel::joinable!(reposts -> actors (did)); 13 diesel::joinable!(starterpacks -> actors (owner)); 14 diesel::joinable!(statuses -> actors (did)); 15+diesel::joinable!(threadgates -> posts (post_uri)); 16 diesel::joinable!(verification -> actors (verifier)); 17 18 diesel::allow_tables_to_appear_in_same_query!(