Skip to content

Commit

Permalink
feat: 환경 변수 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seoko97 committed Nov 21, 2024
1 parent b78d34d commit 6c8c73a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/api/src/auth/github/github.strategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export class GitHubStrategy extends PassportStrategy(Strategy, 'github') {
private authService: AuthService
) {
super({
clientID: configService.get<string>('GITHUB_CLIENT_ID'),
clientSecret: configService.get<string>('GITHUB_CLIENT_SECRET'),
callbackURL: configService.get<string>('GITHUB_CALLBACK_URL'),
clientID: configService.get<string>('AUTHGITHUB_CLIENT_ID'),
clientSecret: configService.get<string>('AUTHGITHUB_CLIENT_SECRET'),
callbackURL: configService.get<string>('AUTHGITHUB_CALLBACK_URL'),
scope: ['user:email'],
});
}
Expand Down

0 comments on commit 6c8c73a

Please sign in to comment.