Module: Nyauth::SessionConcern::ClassMethods
- Defined in:
- app/controllers/concerns/nyauth/session_concern.rb
Instance Method Summary collapse
Instance Method Details
#allow_everyone(options = {}) ⇒ Object
59 60 61 62 63 64 65 |
# File 'app/controllers/concerns/nyauth/session_concern.rb', line 59 def allow_everyone( = {}) if [:only] self.allow_actions = [:only] || [] else self.allow_actions = :all end end |