Skip to content

Commit

Permalink
fix: try disable alternative route
Browse files Browse the repository at this point in the history
  • Loading branch information
kwaa committed Feb 1, 2024
1 parent 49769be commit 13dc6c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/users/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ pub fn handler() -> Router {
.route("/u/:user/outbox", get(user_outbox::handler))
.route("/users/:user/outbox", get(user_outbox::redirect))
.route("/u/:user/inbox", post(user_inbox::handler))
.route("/users/:user/inbox", post(user_inbox::handler))
// .route("/users/:user/inbox", post(user_inbox::handler))
}

0 comments on commit 13dc6c1

Please sign in to comment.