forked from Github-Mirrors/canaille
fix: OIDC JWT settings initialization
This commit is contained in:
parent
ea220e8a93
commit
163c0155b7
7 changed files with 7 additions and 1 deletions
|
@ -102,5 +102,5 @@ class OIDCSettings(BaseModel):
|
|||
This adds security but may not be supported by all clients.
|
||||
"""
|
||||
|
||||
JWT: Optional[JWTSettings] = None
|
||||
JWT: JWTSettings = JWTSettings()
|
||||
"""JSON Web Token settings."""
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
SECRET_KEY = "change me before you go in production"
|
||||
DEBUG = true
|
||||
|
||||
[CANAILLE]
|
||||
NAME = "Canaille"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
SECRET_KEY = "change me before you go in production"
|
||||
DEBUG = true
|
||||
|
||||
[CANAILLE]
|
||||
NAME = "Canaille"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
SECRET_KEY = "change me before you go in production"
|
||||
DEBUG = true
|
||||
|
||||
[CANAILLE]
|
||||
NAME = "Canaille"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
SECRET_KEY = "change me before you go in production"
|
||||
DEBUG = true
|
||||
|
||||
[CANAILLE]
|
||||
LOGO = "/static/img/canaille-head.webp"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
SECRET_KEY = "change me before you go in production"
|
||||
DEBUG = true
|
||||
|
||||
[CANAILLE]
|
||||
LOGO = "/static/img/canaille-head.webp"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
SECRET_KEY = "change me before you go in production"
|
||||
DEBUG = true
|
||||
|
||||
[CANAILLE]
|
||||
LOGO = "/static/img/canaille-head.webp"
|
||||
|
|
Loading…
Reference in a new issue