Module: Cassette::Rubycas::Helper::ClassMethods
- Defined in:
- lib/cassette/rubycas/helper.rb
Instance Method Summary collapse
Instance Method Details
#skip_authentication(*options) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/cassette/rubycas/helper.rb', line 22 def skip_authentication(*) if respond_to?(:skip_before_action) skip_before_action :validate_authentication_ticket, * else skip_before_filter :validate_authentication_ticket, * end end |