Skip to content

Commit

Permalink
style(#10): 주석 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoDora committed Oct 4, 2023
1 parent 5f62e17 commit ca4d8a6
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions src/auth/controllers/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down

0 comments on commit ca4d8a6

Please sign in to comment.