mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
revert change of defaults for twitter and facebook enabled
This commit is contained in:
parent
fd6e86483f
commit
f4bda8f1ba
1 changed files with 5 additions and 2 deletions
|
@ -154,11 +154,14 @@ class SiteSetting < ActiveRecord::Base
|
|||
client_setting(:enable_google_logins, true)
|
||||
client_setting(:enable_yahoo_logins, true)
|
||||
|
||||
client_setting(:enable_twitter_logins, false)
|
||||
client_setting(:enable_twitter_logins, true)
|
||||
setting(:twitter_consumer_key, '')
|
||||
setting(:twitter_consumer_secret, '')
|
||||
|
||||
client_setting(:enable_facebook_logins, false)
|
||||
# note we set this (and twitter to true for 2 reasons)
|
||||
# 1. its an upgrade nightmare to change it to false, lots of people will complain
|
||||
# 2. it advertises the feature (even though it is broken)
|
||||
client_setting(:enable_facebook_logins, true)
|
||||
setting(:facebook_app_id, '')
|
||||
setting(:facebook_app_secret, '')
|
||||
|
||||
|
|
Loading…
Reference in a new issue