15 lines
503 B
Ruby
15 lines
503 B
Ruby
require "openssl"
|
|
require "openid_redis_store"
|
|
|
|
# if you need to test this and are having ssl issues see:
|
|
# http://stackoverflow.com/questions/6756460/openssl-error-using-omniauth-specified-ssl-path-but-didnt-work
|
|
# OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE if Rails.env.development?
|
|
|
|
Rails.application.config.middleware.use OmniAuth::Builder do
|
|
Discourse.authenticators.each do |authenticator|
|
|
authenticator.register_middleware(self)
|
|
end
|
|
end
|
|
|
|
OmniAuth.config.logger = Rails.logger
|