Commit f17ef3efe7fc5668ba4a7badff33f05fe6a9fb98

Authored by Carlos Coêlho
1 parent 545dddfc

Added SOCIAL_NETWORK_ENABLED to settings

Signed-off-by: Carlos Oliveira <carlospecter@gmail.com>
Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com>
colab/management/initconfig.py
... ... @@ -45,6 +45,9 @@ ALLOWED_HOSTS:
45 45 ### Uncomment to enable Broswer ID protocol for authentication
46 46 # BROWSERID_ENABLED: True
47 47  
  48 +### Uncomment to enable social networks fields profile
  49 +# SOCIAL_NETWORK_ENABLED: True
  50 +
48 51 ### Uncomment to enable Converse.js
49 52 # CONVERSEJS_ENABLED: True
50 53  
... ...
colab/settings.py
... ... @@ -322,6 +322,7 @@ if FEEDZILLA_ENABLED:
322 322 )
323 323  
324 324 BROWSERID_ENABLED = locals().get('BROWSERID_ENABLED') or False
  325 +SOCIAL_NETWORK_ENABLED = locals().get('SOCIAL_NETWORK_ENABLED') or False
325 326  
326 327 PROXIED_APPS = locals().get('PROXIED_APPS') or {}
327 328  
... ...