Skip to content

Commit

Permalink
fix: 사용하지 않는 변수 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Conut-1 committed Sep 11, 2024
1 parent 21cc4e5 commit 45bfa88
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions nestjs-BE/server/src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ import { Injectable, UnauthorizedException } from '@nestjs/common';
import { JwtService } from '@nestjs/jwt';
import { jwtConstants, kakaoOauthConstants } from './constants';
import { stringify } from 'qs';
import { PrismaService } from '../prisma/prisma.service';
import { RefreshTokensService } from './refresh-tokens.service';

@Injectable()
export class AuthService {
constructor(
private jwtService: JwtService,
private refreshTokensService: RefreshTokensService,
protected prisma: PrismaService,
) {}

async getKakaoAccount(kakaoUserId: number) {
Expand Down

0 comments on commit 45bfa88

Please sign in to comment.