MakersNetwork/agenda-saude

View on GitHub
app/services/exception_notifier_service.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ExceptionNotifierService
  def self.call(exception)
    raise exception if Rails.env.development?

    Appsignal.send_error(exception)
  end
end