From 1f4b1b5fce1e2a185968b2bdaf0a0086103adf4b Mon Sep 17 00:00:00 2001 From: f Date: Fri, 1 Nov 2024 16:06:12 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20tambi=C3=A9n=20informar=20los=20headers?= =?UTF-8?q?=20#17722?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/registrations_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb index 4ba0b7c7..90015542 100644 --- a/app/controllers/registrations_controller.rb +++ b/app/controllers/registrations_controller.rb @@ -34,7 +34,7 @@ class RegistrationsController < Devise::RegistrationsController def anti_spambot_traps raise SpambotError if spambot? rescue SpambotError => e - ExceptionNotifier.notify_exception(e, data: { params: anonymized_params }) + ExceptionNotifier.notify_exception(e, data: { params: anonymized_params, headers: request.headers.to_h }) nil end