instance method
action_methods
Ruby on Rails 6.1.7.10
Since v3.1.12Signature
action_methods()
No documentation comment.
Source
# File actionpack/lib/abstract_controller/url_for.rb, line 24
def action_methods
@action_methods ||= begin
if _routes
super - _routes.named_routes.helper_names
else
super
end
end
end
Defined in actionpack/lib/abstract_controller/url_for.rb line 24
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in AbstractController::UrlFor::ClassMethods