change default behaviour

This commit is contained in:
tawoe 2022-05-03 12:31:23 +02:00
parent befc0c453e
commit 380636b78a

View File

@ -273,11 +273,11 @@ API_EXPLORER_APP_NAME = 'API Explorer'
LOGO_URL = 'https://static.openbankproject.com/images/OBP/favicon.png'
OVERRIDE_CSS_URL = None
VERIFY = True if API_HOST.startswith("https") else False
VERIFY = True
# Local settings can override anything in here
try:
from apimanager.local_settings import *
from apimanager.local_settings import * # noqa
except ImportError:
pass
# EVERYTHING BELOW HERE WILL NOT BE OVERWRITTEN BY LOCALSETTINGS!