Commit 62ea8805 authored by Stefano Alberto Russo's avatar Stefano Alberto Russo
Browse files

Fixed default setting for OIDC_TOKEN_USE_BASIC_AUTH from True to False.

parent 928d26ca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -263,7 +263,7 @@ if OIDC_RP_CLIENT_ID:

    # Optional
    OIDC_USE_NONCE =  booleanize(os.environ.get('OIDC_USE_NONCE', False))
    OIDC_TOKEN_USE_BASIC_AUTH = booleanize(os.environ.get('OIDC_TOKEN_USE_BASIC_AUTH', True))
    OIDC_TOKEN_USE_BASIC_AUTH = booleanize(os.environ.get('OIDC_TOKEN_USE_BASIC_AUTH', False))
    
    # Non-customizable stuff
    LOGIN_REDIRECT_URL = '/'