Skip to content

Commit

Permalink
Update auth.controller.ts
Browse files Browse the repository at this point in the history
Removed the comments
  • Loading branch information
theChosenDevop authored Mar 2, 2025
1 parent bd0f897 commit b91b39a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ export default class RegistrationController {
@HttpCode(200)
async login(
@Body() loginDto: LoginDto,
@Req() req: RequestExpress, // Express Request
@Res({ passthrough: true }) res: Response // Express Response
@Req() req: RequestExpress,
@Res({ passthrough: true }) res: Response
): Promise<LoginResponseDto | { status_code: number; message: string }> {
return this.authService.loginUser(loginDto, req, res);
}
Expand Down

0 comments on commit b91b39a

Please sign in to comment.