On this page
module ActionController::HideActions::ClassMethods
Public Instance Methods
Overrides AbstractController::Base#action_methods to remove any methods that are listed as hidden methods.
Calls superclass method
# File actionpack/lib/action_controller/metal/hide_actions.rb, line 35
def action_methods
@action_methods ||= Set.new(super.reject { |name| hidden_actions.include?(name) }).freeze
end
Sets all of the actions passed in as hidden actions.
Parameters
args
- A list of actions
# File actionpack/lib/action_controller/metal/hide_actions.rb, line 25
def hide_action(*args)
self.hidden_actions = hidden_actions.dup.merge(args.map(&:to_s)).freeze
end
# File actionpack/lib/action_controller/metal/hide_actions.rb, line 29
def visible_action?(action_name)
not hidden_actions.include?(action_name)
end
© 2004–2016 David Heinemeier Hansson
Licensed under the MIT License.