Skip to content

Commit

Permalink
fix: routes
Browse files Browse the repository at this point in the history
  • Loading branch information
noahrav committed Dec 29, 2023
1 parent 2f9bc3b commit 2e39075
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ namespace CUSubmitterService {
Routes::Get(router, "/", Routes::bind(&Service::ready, this));
Routes::Post(router, "/chgen", Routes::bind(&Service::generateChangelog, this));
Routes::Post(router, "/transfer", Routes::bind(&Service::generateTransferChangelog, this));
Routes::Get(router, "/transfer", Routes::bind(&Service::generateTransferChangelog, this));
Routes::Get(router, "/transfer/changelog", Routes::bind(&Service::transfer, this));
Routes::Get(router, "/transfer", Routes::bind(&Service::transfer, this));
Routes::Get(router, "/transfer/changelog", Routes::bind(&Service::lastTransferChangelog, this));
Routes::Post(router, "/submit", Routes::bind(&Service::generateSubmissionChangelog, this));
Routes::Get(router, "/submit", Routes::bind(&Service::submit, this));
Routes::Get(router, "/submit/changelog", Routes::bind(&Service::lastSubmissionChangelog, this));
Expand Down

0 comments on commit 2e39075

Please sign in to comment.