Skip to content

Commit

Permalink
Fix hardcoded audience
Browse files Browse the repository at this point in the history
  • Loading branch information
bergsalex committed Aug 15, 2024
1 parent e3b32f6 commit e8db1c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/geneweaver/client/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def current_user(id_token: str) -> Dict[str, str]:
def _device_code_payload() -> Dict[str, str]:
return {
"client_id": settings.AUTH_CLIENT_ID,
"audience": "https://cube.jax.org",
"audience": settings.AUTH_AUDIENCE,
"scope": " ".join(settings.AUTH_SCOPES),
}

Expand Down

0 comments on commit e8db1c7

Please sign in to comment.