mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 19:26:21 +00:00
17 lines
414 B
Ruby
17 lines
414 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ExceptionNotifier
|
|
# Notifica las excepciones como incidencias en Gitlab
|
|
class GitlabNotifier
|
|
def initialize(_); end
|
|
|
|
# Recibe la excepción y empieza la tarea de notificación en segundo
|
|
# plano.
|
|
#
|
|
# @param [Exception]
|
|
# @param [Hash]
|
|
def call(exception, **options)
|
|
GitlabNotifierJob.perform_async(exception, **options)
|
|
end
|
|
end
|
|
end
|