instance method
before_action
Ruby on Rails 8.1.2
Since v4.0.13Signature
before_action(names, block)
Append a callback before actions. See _insert_callbacks for parameter details.
If the callback renders or redirects, the action will not run. If there are additional callbacks scheduled to run after that callback, they are also cancelled.
Source
# File actionpack/lib/abstract_controller/callbacks.rb, line 134
Defined in actionpack/lib/abstract_controller/callbacks.rb line 134
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in AbstractController::Callbacks::ClassMethods