Skip to content

Commit

Permalink
bug fix: parameter not assigned to route - resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
jrCleber committed Apr 18, 2024
1 parent 8b3d2a4 commit bff90ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/whatsapp/routers/instance.router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export function InstanceRouter(

return res.status(HttpStatus.OK).json(response);
})
.put('/refreshToken', async (req, res) => {
.put(routerPath('refreshToken'), async (req, res) => {
const response = await dataValidate<OldToken>({
request: req,
schema: oldTokenSchema,
Expand Down

0 comments on commit bff90ed

Please sign in to comment.