Methods

Class Public methods

new(controller)

📝 Source code
# File actionpack/lib/action_controller/metal/request_forgery_protection.rb, line 206
        def initialize(controller)
          @controller = controller
        end
🔎 See on GitHub

Instance Public methods

handle_unverified_request()

📝 Source code
# File actionpack/lib/action_controller/metal/request_forgery_protection.rb, line 210
        def handle_unverified_request
          raise ActionController::InvalidAuthenticityToken
        end
🔎 See on GitHub