add: outbox tab on profile

tab is only visible to profile owner and mods
This commit is contained in:
trisua 2025-06-01 19:26:55 -04:00
parent 5dec98d698
commit 7bda718082
12 changed files with 264 additions and 9 deletions

View file

@ -70,6 +70,7 @@ pub fn routes() -> Router {
.route("/settings", get(profile::settings_request))
.route("/@{username}", get(profile::posts_request))
.route("/@{username}/media", get(profile::media_request))
.route("/@{username}/outbox", get(profile::outbox_request))
.route("/@{username}/replies", get(profile::replies_request))
.route("/@{username}/following", get(profile::following_request))
.route("/@{username}/followers", get(profile::followers_request))