Skip to content

Commit 06b4e29

Browse files
committed
chore: apply configService instead of process.env
1 parent 21d9d63 commit 06b4e29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/user/user.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class UserService {
1818
) {}
1919

2020
async getIdpLoginUrl(): Promise<string> {
21-
const idpWebUrl = 'https://idp.gistory.me';
21+
const idpWebUrl = this.configService.get<string>('IDP_WEB_URL');
2222

2323
const params = new URLSearchParams({
2424
response_type: 'code',

0 commit comments

Comments
 (0)