instance method
_handle_action_missing
Ruby on Rails 7.2.3
Since v3.0.20 Private — implementation detail, not part of the public APISignature
_handle_action_missing(*args)
If the action name was not found, but a method called “action_missing” was found, #method_for_action will return “_handle_action_missing”. This method calls #action_missing with the current action name.
Parameters
-
argsrest
Source
# File actionpack/lib/abstract_controller/base.rb, line 227
def _handle_action_missing(*args)
action_missing(@_action_name, *args)
end
Defined in actionpack/lib/abstract_controller/base.rb line 227
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in AbstractController::Base