instance method
token_tag
Ruby on Rails 4.1.16
Since v4.0.13 PrivateSignature
token_tag(token=nil)
No documentation comment.
Parameters
-
tokenopt = nil
Source
# File actionview/lib/action_view/helpers/url_helper.rb, line 615
def token_tag(token=nil)
if token != false && protect_against_forgery?
token ||= form_authenticity_token
tag(:input, type: "hidden", name: request_forgery_protection_token.to_s, value: token)
else
''
end
end
Defined in actionview/lib/action_view/helpers/url_helper.rb line 615
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Helpers::UrlHelper