1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-02 20:15:22 +02:00

Handle invalid API key (#1515)
Some checks failed
Publish Docker image / ci (push) Has been cancelled
Publish Docker image / Build docker image (push) Has been cancelled

* Handle invalid API key

* Show error on invalid API key
This commit is contained in:
Nikhil Badyal 2024-12-04 00:36:59 +05:30 committed by GitHub
parent 565103caf3
commit 13bec4599f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 5 deletions

View file

@ -159,7 +159,11 @@ class Family < ApplicationRecord
end
def synth_overage?
self.class.synth_provider && self.class.synth_provider.usage.utilization >= 100
self.class.synth_provider&.usage&.utilization.to_i >= 100
end
def synth_valid?
self.class.synth_provider&.healthy?
end
def subscribed?