We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3752504 commit 1995324Copy full SHA for 1995324
soauth/config/settings.py
@@ -42,10 +42,10 @@ class Settings(BaseSettings):
42
stale_login_expiry: timedelta = timedelta(minutes=30)
43
login_record_length: timedelta = timedelta(weeks=2)
44
45
- github_client_id: str
46
- github_client_secret: str
47
- github_redirect_uri: str
48
- github_organization_checks: list[str]
+ github_client_id: str | None = None
+ github_client_secret: str | None = None
+ github_redirect_uri: str | None
+ github_organization_checks: list[str] = []
49
50
# Production setup
51
hostname: str = "http://localhost:8000"
0 commit comments