method

token_tag

token_tag(token = nil, form_options: {})
private

No documentation available.

# File actionview/lib/action_view/helpers/url_helper.rb, line 620
        def token_tag(token = nil, form_options: {})
          if token != false && protect_against_forgery?
            token ||= form_authenticity_token(form_options: form_options)
            tag(:input, type: "hidden", name: request_forgery_protection_token.to_s, value: token)
          else
            "".freeze
          end
        end