Commit f17ef3efe7fc5668ba4a7badff33f05fe6a9fb98
1 parent
545dddfc
Exists in
master
and in
39 other branches
Added SOCIAL_NETWORK_ENABLED to settings
Signed-off-by: Carlos Oliveira <carlospecter@gmail.com> Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com>
Showing
2 changed files
with
4 additions
and
0 deletions
Show diff stats
colab/management/initconfig.py
@@ -45,6 +45,9 @@ ALLOWED_HOSTS: | @@ -45,6 +45,9 @@ ALLOWED_HOSTS: | ||
45 | ### Uncomment to enable Broswer ID protocol for authentication | 45 | ### Uncomment to enable Broswer ID protocol for authentication |
46 | # BROWSERID_ENABLED: True | 46 | # BROWSERID_ENABLED: True |
47 | 47 | ||
48 | +### Uncomment to enable social networks fields profile | ||
49 | +# SOCIAL_NETWORK_ENABLED: True | ||
50 | + | ||
48 | ### Uncomment to enable Converse.js | 51 | ### Uncomment to enable Converse.js |
49 | # CONVERSEJS_ENABLED: True | 52 | # CONVERSEJS_ENABLED: True |
50 | 53 |
colab/settings.py
@@ -322,6 +322,7 @@ if FEEDZILLA_ENABLED: | @@ -322,6 +322,7 @@ if FEEDZILLA_ENABLED: | ||
322 | ) | 322 | ) |
323 | 323 | ||
324 | BROWSERID_ENABLED = locals().get('BROWSERID_ENABLED') or False | 324 | BROWSERID_ENABLED = locals().get('BROWSERID_ENABLED') or False |
325 | +SOCIAL_NETWORK_ENABLED = locals().get('SOCIAL_NETWORK_ENABLED') or False | ||
325 | 326 | ||
326 | PROXIED_APPS = locals().get('PROXIED_APPS') or {} | 327 | PROXIED_APPS = locals().get('PROXIED_APPS') or {} |
327 | 328 |