mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-25 20:18:38 +02:00
fix linting error
This commit is contained in:
parent
14fd0b7baa
commit
f55014b8a8
1 changed files with 5 additions and 4 deletions
|
@ -371,8 +371,7 @@ LOGGING = {
|
||||||
# each handler has its choice of format
|
# each handler has its choice of format
|
||||||
"formatters": {
|
"formatters": {
|
||||||
"verbose": {
|
"verbose": {
|
||||||
"format": "[%(asctime)s] %(levelname)s [%(name)s:%(lineno)s] "
|
"format": "[%(asctime)s] %(levelname)s [%(name)s:%(lineno)s] %(message)s",
|
||||||
"%(message)s",
|
|
||||||
"datefmt": "%d/%b/%Y %H:%M:%S",
|
"datefmt": "%d/%b/%Y %H:%M:%S",
|
||||||
},
|
},
|
||||||
"simple": {
|
"simple": {
|
||||||
|
@ -515,13 +514,15 @@ OIDC_PROVIDERS = {
|
||||||
"acr_value": "http://idmanagement.gov/ns/assurance/ial/2",
|
"acr_value": "http://idmanagement.gov/ns/assurance/ial/2",
|
||||||
},
|
},
|
||||||
"client_registration": {
|
"client_registration": {
|
||||||
"client_id": "urn:gov:cisa:openidconnect.profiles:sp:sso:cisa:dotgov_registrar",
|
"client_id": (
|
||||||
|
"urn:gov:cisa:openidconnect.profiles:sp:sso:cisa:dotgov_registrar"
|
||||||
|
),
|
||||||
"redirect_uris": [f"{env_base_url}/openid/callback/login/"],
|
"redirect_uris": [f"{env_base_url}/openid/callback/login/"],
|
||||||
"post_logout_redirect_uris": [f"{env_base_url}/openid/callback/logout/"],
|
"post_logout_redirect_uris": [f"{env_base_url}/openid/callback/logout/"],
|
||||||
"token_endpoint_auth_method": ["private_key_jwt"],
|
"token_endpoint_auth_method": ["private_key_jwt"],
|
||||||
"sp_private_key": secret_login_key,
|
"sp_private_key": secret_login_key,
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
# endregion
|
# endregion
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue