feat(presentation): remote actor posts endpoint + extended RemoteActorResponse

This commit is contained in:
2026-05-14 22:19:23 +02:00
parent 00b369c6ad
commit f3c3637ade
6 changed files with 165 additions and 2 deletions

View File

@@ -65,6 +65,10 @@ pub fn router() -> Router<AppState> {
.route("/feed", get(feed::home_feed))
.route("/feed/public", get(feed::public_feed))
.route("/search", get(feed::search_handler))
.route(
"/federation/actors/{handle}/posts",
get(federation_actors::remote_actor_posts_handler),
)
.route("/tags/popular", get(feed::get_popular_tags))
.route("/tags/{name}", get(feed::tag_thoughts_handler))
// notifications