Skip to content

Commit

Permalink
:id endpoint on put route
Browse files Browse the repository at this point in the history
  • Loading branch information
igardiet committed Jun 19, 2023
1 parent d718edc commit 245168f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const {

router.get('/', getUsers);
router.post('/', postUsers);
router.put('/', putUsers);
router.put('/:id', putUsers);
router.patch('/', patchUsers);
router.delete('/', deleteUsers);

Expand Down

0 comments on commit 245168f

Please sign in to comment.