Skip to content

Commit

Permalink
feat: remove console
Browse files Browse the repository at this point in the history
  • Loading branch information
wlstmd committed Jul 16, 2024
1 parent dde3577 commit f7173b6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ export class AuthController {
@Get('github/login')
async githubLogin(@Req() req: Request, @Res() res: Response) {
const allowedIP = this.configService.get<string>('ALLOWED_IP');
console.log('allowedIP : ', allowedIP);
console.log('clientIP : ', this.getClientIP(req));

if (!this.isWhitelistedIP(req, allowedIP)) {
throw new HttpException(
Expand Down

0 comments on commit f7173b6

Please sign in to comment.