chore: cleaned unwanted imports in auth module

This commit is contained in:
Balu Babu
2023-01-20 00:04:01 +05:30
parent 53571a7d72
commit 509604833e
5 changed files with 6345 additions and 5 deletions

View File

@@ -63,6 +63,8 @@ export class AuthController {
async googleAuthRedirect(@Request() req, @Res() res) {
const authTokens = await this.authService.generateAuthTokens(req.user.uid);
if (E.isLeft(authTokens)) throwHTTPErr(authTokens.left);
console.log('google', authTokens);
authCookieHandler(res, authTokens.right, true);
}