diff --git a/src/auth/controllers/auth.controller.ts b/src/auth/controllers/auth.controller.ts index 7d10ce5..2335b40 100644 --- a/src/auth/controllers/auth.controller.ts +++ b/src/auth/controllers/auth.controller.ts @@ -10,17 +10,6 @@ export class AuthController { private s3Service: S3Service ) {} - @Get() - getHello(): string { - return 'Hello World!'; - } - - // @Get('auth/naver') - // @UseGuards(AuthGuard('naver')) - // async naverAuth(@Req() req) { - - // } - @Get('auth/naver/callback') @UseGuards(AuthGuard('naver')) async naverAuthRedirect(@Req() req) { @@ -32,12 +21,6 @@ export class AuthController { return { accessToken, refreshToken, naverAccessToken, naverRefreshToken }; } - // @Get('auth/kakao') - // @UseGuards(AuthGuard('kakao')) - // async kakaoAuth(@Req() req) { - - // } - @Get('auth/kakao/callback') @UseGuards(AuthGuard('kakao')) async kakaoAuthRedirect(@Req() req) {