X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/79276fb43abc429cd5515f81005281e303a16dd8..fb70a89a36e42a7e439e4e99e449a109d0c3cd86:/config/initializers/openid.rb?ds=inline diff --git a/config/initializers/openid.rb b/config/initializers/openid.rb index 966164b3e..2a6de16b2 100644 --- a/config/initializers/openid.rb +++ b/config/initializers/openid.rb @@ -1 +1,7 @@ -OpenIdAuthentication.store = :file +if defined?(MEMCACHE_SERVERS) + require "openid/store/memcache" + + OpenIdAuthentication.store = OpenID::Store::Memcache.new(Dalli::Client.new(MEMCACHE_SERVERS, :namespace => "rails")) +else + OpenIdAuthentication.store = :file +end