rez_core 1.0.20 → 1.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -18,11 +18,12 @@ export class LoginController {
18
18
  constructor(private loginService: LoginService) {}
19
19
 
20
20
  @Post('login')
21
+
21
22
  async login(@Body() body, @Res() res: Response) {
22
- console.log("hey")
23
23
  return res
24
24
  .status(HttpStatus.OK)
25
25
  .json(await this.loginService.login(body.email_id, body.password));
26
+
26
27
  }
27
28
 
28
29
  @UseGuards(JwtAuthGuard)