Skip to content

Commit

Permalink
auth-service no hardcoded localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabi-02 committed Jan 18, 2024
1 parent b57bbe2 commit fa66771
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion services/auth-service/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ app.get('/oauth-redirect', async (req, res, next) => {
let response = await client.exchangeOAuthCodeForAccessTokenUsingPKCE(authCode,
clientId,
clientSecret,
`http://localhost/auth/oauth-redirect`,
appURL + `/auth/oauth-redirect`,
userSessionCookie.verifier);

if (response.statusCode !== 200) {
Expand Down
2 changes: 1 addition & 1 deletion services/auth-service/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.0.5
v1.0.6

0 comments on commit fa66771

Please sign in to comment.