= private = protected
This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.
hide_action(*names)
Hide each of the given methods from being callable as actions.
# File actionpack/lib/action_controller/base.rb, line 417 def hide_action(*names) write_inheritable_attribute(:hidden_actions, hidden_actions | names.map { |name| name.to_s }) end