mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 06:39:39 +02:00
10 lines
148 B
Ruby
10 lines
148 B
Ruby
|
class Issue::ExchangeRateProviderMissing < Issue
|
||
|
def default_severity
|
||
|
:error
|
||
|
end
|
||
|
|
||
|
def stale?
|
||
|
ExchangeRate.provider_healthy?
|
||
|
end
|
||
|
end
|