Skip to content

Commit

Permalink
Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroavpereira committed Aug 29, 2024
1 parent 1c8c406 commit ce480dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/swaps.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const swapsRouter = Router();

swapsRouter.use(authenticator);

swapsRouter.get("/".swapsController.showMine);
swapsRouter.get("/", swapsController.showMine);
swapsRouter.post("/", swapsController.create);
swapsRouter.patch("/accept/:swap_id", swapsController.accept);
swapsRouter.patch("/reject/:swap_id", swapsController.reject);
Expand Down

0 comments on commit ce480dc

Please sign in to comment.