Skip to content

Commit

Permalink
fixing route syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptoni9n committed Feb 15, 2025
1 parent a14e246 commit 42b3c64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/subcommand/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,11 @@ impl Server {
get(r::parents_paginated),
)
.route(
"/r/parents/:inscription_id/inscriptions",
"/r/parents/{inscription_id}/inscriptions",
get(r::parent_inscriptions_recursive),
)
.route(
"/r/parents/:inscription_id/inscriptions/:page",
"/r/parents/{inscription_id}/inscriptions/{page}",
get(r::parent_inscriptions_recursive_paginated),
)
.route("/r/sat/{sat_number}", get(r::sat))
Expand Down

0 comments on commit 42b3c64

Please sign in to comment.