Fix invalid syntax in OmniAuth initializer sample

This commit is contained in:
Robert Speicher 2012-08-10 20:13:02 -04:00
parent 28d903858e
commit 91a8cd240b

View file

@ -2,7 +2,7 @@
# The wiki has further details on configuring each provider.
Devise.setup do |config|
# config.omniauth :github 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
# config.omniauth :github, 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
# config.omniauth :ldap,
# :host => 'YOUR_LDAP_SERVER',
@ -12,4 +12,4 @@ Devise.setup do |config|
# :method => :plain,
# :bind_dn => 'THE_FULL_DN_OF_THE_USER_YOU_WILL_BIND_WITH',
# :password => 'THE_PASSWORD_OF_THE_BIND_USER'
end
end