mirror of
https://0xacab.org/sutty/sutty
synced 2025-03-16 07:38:19 +00:00
8 lines
248 B
Ruby
8 lines
248 B
Ruby
# frozen_string_literal: true
|
|
|
|
ActiveJob::Serializers.add_serializers ActiveJob::Serializers::ExceptionSerializer
|
|
|
|
# Notificar los errores
|
|
Que.error_notifier = proc do |error, job|
|
|
ExceptionNotifier.notify_exception(error, data: (job || {}))
|
|
end
|