Flowdock
method

included_in_action?

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActionController::Filters::Filter
included_in_action?(controller, options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/filters.rb, line 146
        def included_in_action?(controller, options)
          if options[:only]
            options[:only].include?(controller.action_name)
          elsif options[:except]
            !options[:except].include?(controller.action_name)
          else
            true
          end
        end
Register or log in to add new notes.