dyslectic af

This commit is contained in:
H.T. Kruitbosch 2018-08-03 13:20:23 +02:00
parent c049394e9e
commit b62c3104ca
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ ENTITY_ID = '{entity_id}'
# Important to make sure redirects and such work properly
BASE_URL = '{base_url}'
BASE_URL_SLASH = BASE_URL + ('' if BASE_URL.endwith('/') else '/')
BASE_URL_SLASH = BASE_URL + ('' if BASE_URL.endswith('/') else '/')
# This support information is used for the SAML2 service provider contact information
TECHNICAL_NAME = '{technical_name}'
@ -22,7 +22,7 @@ ORGANISATION_UNIT = '{organisation_unit}'
SAML_ROUTE = '{saml_route}'
SAML_ROUTE_SLASH = SAML_ROUTE + ('' if SAML_ROUTE.endwith('/') else '/')
SAML_ROUTE_SLASH = SAML_ROUTE + ('' if SAML_ROUTE.endswith('/') else '/')
# redirection after successful SAML2 login
SAML_REDIRECT = BASE_URL_SLASH