class method
self.hidden_actions
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
self.hidden_actions()
Return an array containing the names of public methods that have been marked hidden from the action processor. By default, all methods defined in ActionController::Base and included modules are hidden. More methods can be hidden using hide_actions.
Source
# File actionpack/lib/action_controller/base.rb, line 413
def hidden_actions
read_inheritable_attribute(:hidden_actions) || write_inheritable_attribute(:hidden_actions, [])
end
Defined in actionpack/lib/action_controller/base.rb line 413
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::Base