mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-22 16:55:36 +02:00
replace all the other config usages with allencompassing config
This commit is contained in:
@@ -3,21 +3,23 @@ from pydantic import Field
|
||||
import secrets
|
||||
|
||||
|
||||
class OpenIdConfig(BaseSettings):
|
||||
client_id: str = ""
|
||||
client_secret: str = ""
|
||||
configuration_endpoint: str = ""
|
||||
name: str = "OpenID"
|
||||
enabled: bool = False
|
||||
|
||||
|
||||
class AuthConfig(BaseSettings):
|
||||
# to get a signing key run:
|
||||
# openssl rand -hex 32
|
||||
token_secret: str = Field(default_factory=secrets.token_hex)
|
||||
session_lifetime: int = 60 * 60 * 24
|
||||
admin_email: list[str] = []
|
||||
admin_emails: list[str] = []
|
||||
email_password_resets: bool = False
|
||||
openid_connect: OpenIdConfig = OpenIdConfig()
|
||||
|
||||
@property
|
||||
def jwt_signing_key(self):
|
||||
return self._jwt_signing_key
|
||||
|
||||
|
||||
class OpenIdConfig(BaseSettings):
|
||||
client_id: str
|
||||
client_secret: str
|
||||
configuration_endpoint: str
|
||||
name: str = "OpenID"
|
||||
|
||||
Reference in New Issue
Block a user