instance method
handle_unverified_request
Ruby on Rails 8.1.2
Since v2.3.18 PrivateSignature
handle_unverified_request()
No documentation comment.
Source
# File actionpack/lib/action_controller/metal/request_forgery_protection.rb, line 408
def handle_unverified_request
protection_strategy = forgery_protection_strategy.new(self)
if protection_strategy.respond_to?(:warning_message)
protection_strategy.warning_message = unverified_request_warning_message
end
protection_strategy.handle_unverified_request
end
Defined in actionpack/lib/action_controller/metal/request_forgery_protection.rb line 408
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::RequestForgeryProtection