diff --git a/app/route/auth.route.ts b/app/route/auth.route.ts index a7a6e72..c4a9bee 100644 --- a/app/route/auth.route.ts +++ b/app/route/auth.route.ts @@ -105,7 +105,8 @@ router.post(subRoutes.forgetPassword, async (req: Request, res: Response) => { await authController.forgetPassword( context.postgresql_provider, context.message_queue_provider, - req.body.username + req.body.username, + req.body.languageCode ); res.status(ResponseCode.NO_CONTENT).json({}); });