dawarich/app/services/exception_reporter.rb

10 lines
181 B
Ruby
Raw Normal View History

2025-05-03 14:36:09 -04:00
# frozen_string_literal: true
class ExceptionReporter
def self.call(exception)
return unless DawarichSettings.self_hosted?
Sentry.capture_exception(exception)
end
end