From c9b2eb25b2c9fa1fe19507a845b9b075f71ab548 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Fri, 18 Aug 2017 11:46:13 +0200 Subject: [PATCH] Add default OAUTH_CREDENTIALS in config --- pillar/config.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pillar/config.py b/pillar/config.py index 6c66ea3b..43843557 100644 --- a/pillar/config.py +++ b/pillar/config.py @@ -93,6 +93,14 @@ FULL_FILE_ACCESS_ROLES = {'admin', 'subscriber', 'demo'} BLENDER_ID_CLIENT_ID = 'SPECIAL-SNOWFLAKE-57' BLENDER_ID_SUBCLIENT_ID = 'PILLAR' +# Collection of supported OAuth providers (Blender ID, Facebook and Google). Example entry: +# 'blender-id': { +# 'id': 'CLOUD-OF-SNOWFLAKES-43', +# 'secret': 'thesecret', +# 'base_url': 'http://blender_id:8000/' +# } + +OAUTH_CREDENTIALS = {} # See https://docs.python.org/2/library/logging.config.html#configuration-dictionary-schema LOGGING = {