mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 21:59:38 +02:00
* Rough draft of issue system * Simplify design * Remove stale files from merge conflicts * STI for issues * Cleanup * Improve Synth api key flow * Stub api key for test
9 lines
148 B
Ruby
9 lines
148 B
Ruby
class Issue::ExchangeRateProviderMissing < Issue
|
|
def default_severity
|
|
:error
|
|
end
|
|
|
|
def stale?
|
|
ExchangeRate.provider_healthy?
|
|
end
|
|
end
|