Method: Saml::Rails::ControllerHelper#current_provider
- Defined in:
- lib/saml/rails/controller_helper.rb
#current_provider(entity_id_or_method = nil, &block) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/saml/rails/controller_helper.rb', line 4 def current_provider(entity_id_or_method = nil, &block) if block_given? before_action &block else case entity_id_or_method when Symbol before_action { Saml.current_provider = send(entity_id_or_method) } else before_action { Saml.current_provider = Saml.provider("#{entity_id_or_method}") } end end end |