dawarich/app/services/exception_reporter.rb
2025-05-03 20:36:09 +02:00

9 lines
181 B
Ruby

# frozen_string_literal: true
class ExceptionReporter
def self.call(exception)
return unless DawarichSettings.self_hosted?
Sentry.capture_exception(exception)
end
end