valid?(action)
public

No documentation available.

# File actionpack/lib/action_controller/metal.rb, line 23
      def valid?(action)
        if @only.present?
          @only.include?(action)
        elsif @except.present?
          [email protected]?(action)
        else
          true
        end
      end