From d433fbdeda086578fef81da7cf52bb1b25e76a90 Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Tue, 21 Nov 2023 12:20:00 -0500 Subject: [PATCH] Making adjustments to models. Signed-off-by: Cliff Hill --- app/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models.py b/app/models.py index 5e7c46d9e..1a7247625 100644 --- a/app/models.py +++ b/app/models.py @@ -447,7 +447,7 @@ class Organization(db.Model): return None @property - def is_active(self): + def agreement_active(self): return self.agreement and self.agreement.status == AgreementStatus.active @property