instance method
method_not_get_method?
Ruby on Rails 7.0.10
Since v5.2.8.1 PrivateSignature
method_not_get_method?(method)
No documentation comment.
Parameters
-
methodreq
Source
# File actionview/lib/action_view/helpers/url_helper.rb, line 788
def method_not_get_method?(method)
return false unless method
(STRINGIFIED_COMMON_METHODS[method] || method.to_s.downcase) != "get"
end
Defined in actionview/lib/action_view/helpers/url_helper.rb line 788
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Helpers::UrlHelper