Skip to content

Commit

Permalink
get_examdetails is now a POST but still called get since you're only …
Browse files Browse the repository at this point in the history
…fetching somewhat public data
  • Loading branch information
greybaron committed Aug 13, 2024
1 parent afb48a1 commit c922425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub async fn app() -> Router {
.route("/get_grades", get(services::get_grades))
.route("/get_examsignup", get(services::get_examsignup))
.route("/registerexam", post(services::post_registerexam))
.route("/get_examdetails", get(services::get_examdetails))
.route("/get_examdetails", post(services::get_examdetails))
.route("/cancelexam", post(services::post_cancelexam))
.route("/get_examverfahren", get(services::get_examverfahren))
.route("/get_ects", get(services::get_ects))
Expand Down

0 comments on commit c922425

Please sign in to comment.