Skip to content
Snippets Groups Projects

Change token param

Merged GUVEN Kemal requested to merge changeTokenParam into master
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -11,7 +11,7 @@ export class LoginController {
// @UseGuards(AuthGuard('local'))
@Post()
async login(@Body() req: Login) {
console.log('controller ' + req.email + req.passwordHash);
// console.log('controller ' + req.email + req.passwordHash);
return this.loginService.login(req);
}
}
Loading