lib/saml/rails/controller_helper.rb in libsaml-2.1.3 vs lib/saml/rails/controller_helper.rb in libsaml-2.1.4
- old
+ new
@@ -12,19 +12,11 @@
before_filter { Saml.current_provider = Saml.provider("#{entity_id_or_method}") }
end
end
end
- def current_store(store_or_symbol = nil)
- case store_or_symbol
- when Symbol
- before_filter { Saml.current_store = store_or_symbol }
- else
- before_filter do
- Saml::Config.register_store klass.name.underscore, klass_or_symbol
- Saml.current_store = klass.name.underscore
- end
- end
+ def current_store(store)
+ before_filter { Saml.current_store = store }
end
end
end
end