feat(presentation): followers/following list endpoints for remote actors

This commit is contained in:
2026-05-15 00:48:42 +02:00
parent 38a13ad641
commit c536cc2cd4
8 changed files with 118 additions and 2 deletions

View File

@@ -69,6 +69,14 @@ pub fn router() -> Router<AppState> {
"/federation/actors/{handle}/posts",
get(federation_actors::remote_actor_posts_handler),
)
.route(
"/federation/actors/{handle}/followers-list",
get(federation_actors::actor_followers_handler),
)
.route(
"/federation/actors/{handle}/following-list",
get(federation_actors::actor_following_handler),
)
.route("/tags/popular", get(feed::get_popular_tags))
.route("/tags/{name}", get(feed::tag_thoughts_handler))
// notifications