Sha256: e465dd3ddc065c18b200c7cd664d1b63644ccbb3ae52fe1d90483bf1f78fc84a
Contents?: true
Size: 306 Bytes
Versions: 42
Compression:
Stored size: 306 Bytes
Contents
# frozen_string_literal: true module ShopifyApp module CsrfProtection extend ActiveSupport::Concern included do protect_from_forgery with: :exception, unless: :valid_session_token? end private def valid_session_token? request.env['jwt.shopify_domain'] end end end
Version data entries
42 entries across 42 versions & 2 rubygems