Module: Saml::Rails::ControllerHelper

Defined in:
lib/saml/rails/controller_helper.rb

Instance Method Summary collapse

Instance Method Details

#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_filter &block
  else
    case entity_id_or_method
      when Symbol
        before_filter { Saml.current_provider = send(entity_id_or_method) }
      else
        before_filter { Saml.current_provider = Saml.provider("#{entity_id_or_method}") }
    end
  end
end

#current_store(store) ⇒ Object



17
18
19
# File 'lib/saml/rails/controller_helper.rb', line 17

def current_store(store)
  before_filter { Saml.current_store = store }
end