Skip to content

Commit

Permalink
Switching the default auth domain to thejacksonlaboratory
Browse files Browse the repository at this point in the history
  • Loading branch information
bergsalex committed Aug 13, 2024
1 parent a4d8615 commit 4778db7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "geneweaver-client"
version = "0.9.0"
version = "0.10.0a0"
description = "A Python Client for the Geneweaver API"
authors = ["Jax Computational Sciences <[email protected]>"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions src/geneweaver/client/core/config_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
class Settings(BaseSettings):
"""Settings class for GeneWeaver Client."""

AUTH_DOMAIN: str = "geneweaver.auth0.com"
AUTH_CLIENT_ID: str = "tvcvnbBJQr15jFds8ZkwgHoqRJ0IuGJC"
AUTH_DOMAIN: str = "thejacksonlaboratory.auth0.com"
AUTH_CLIENT_ID: str = "f8QZPcIrPIG6DIeWR2Rr3C8X5bzx8zBz"
AUTH_ALGORITHMS: List[str] = ["RS256"]
AUTH_SCOPES: List[str] = ["openid", "profile", "email", "offline_access"]

Expand Down

0 comments on commit 4778db7

Please sign in to comment.