From 76f271400674ef2071f8fc2afb55332c2f1bf4f8 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal <59223300+nikhilbadyal@users.noreply.github.com> Date: Wed, 27 Nov 2024 05:03:26 +0530 Subject: [PATCH] Updated usage check threshold to 100pc instead of 1 (#1504) --- app/models/family.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/family.rb b/app/models/family.rb index b4bb2d4c..a618220c 100644 --- a/app/models/family.rb +++ b/app/models/family.rb @@ -154,7 +154,7 @@ class Family < ApplicationRecord end def synth_overage? - self.class.synth_provider && self.class.synth_provider.usage.utilization >= 1 + self.class.synth_provider && self.class.synth_provider.usage.utilization >= 100 end def subscribed?