Sha256: 1e0d6b569d64e437c23fbc4804432c28cc87e2769b52690af61cd0660a0dd6cc
Contents?: true
Size: 615 Bytes
Versions: 4
Compression:
Stored size: 615 Bytes
Contents
require 'digest/sha1' module ActionController #:nodoc: module RequestForgeryProtection protected alias_method :original_form_authenticity_token, :form_authenticity_token # Sets the token value for the current session. def form_authenticity_token raise 'XSRF token secret must be defined' if XSRF_TOKEN_SECRET.nil? || XSRF_TOKEN_SECRET.empty? if request.session_options[:id] Digest::SHA1.hexdigest("#{XSRF_TOKEN_SECRET}#{request.session_options[:id]}#{request.subdomain}") else original_form_authenticity_token end end end end
Version data entries
4 entries across 4 versions & 1 rubygems