Merge pull request #90 from alphagov/rename-config-url

Rename  NOTIFY_DATA_API_URL to API_HOST_NAME.
This commit is contained in:
NIcholas Staples
2016-01-19 16:45:59 +00:00
3 changed files with 4 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ def register():
role_id=1)
users_dao.insert_user(user)
user_api_client = UserApiClient(current_app.config['NOTIFY_API_URL'],
user_api_client = UserApiClient(current_app.config['API_HOST_NAME'],
current_app.config['ADMIN_CLIENT_USER_NAME'],
current_app.config['ADMIN_CLIENT_SECRET'])
try:

View File

@@ -12,7 +12,7 @@ class NotificationsAdminAPIClient(NotificationsAPIClient):
"secret")
def init_app(self, application):
self.base_url = application.config['NOTIFY_API_URL']
self.base_url = application.config['API_HOST_NAME']
self.client_id = application.config['NOTIFY_API_CLIENT']
self.secret = application.config['NOTIFY_API_SECRET']

View File

@@ -22,7 +22,7 @@ class Config(object):
SESSION_COOKIE_HTTPONLY = True
SESSION_COOKIE_SECURE = True
NOTIFY_API_URL = os.getenv('NOTIFY_API_URL')
API_HOST_NAME = os.getenv('API_HOST_NAME')
NOTIFY_API_SECRET = os.getenv('NOTIFY_API_SECRET', "dev-secret")
NOTIFY_API_CLIENT = os.getenv('NOTIFY_API_CLIENT', "admin")
@@ -41,7 +41,7 @@ class Config(object):
class Development(Config):
DEBUG = True
NOTIFY_API_URL = 'http://localhost:6011'
API_HOST_NAME = 'http://localhost:6011'
ADMIN_CLIENT_USER_NAME = 'dev-notify-admin'
ADMIN_CLIENT_SECRET = 'dev-notify-secret-key'