From 2efe22ca167966d8d112c5ecfcd62773c232cce1 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Sat, 9 Dec 2023 11:28:53 -0700 Subject: [PATCH] - Fix doc strings --- tdrs-backend/tdpservice/users/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/users/models.py b/tdrs-backend/tdpservice/users/models.py index 3305db8dd..7cb2d2047 100644 --- a/tdrs-backend/tdpservice/users/models.py +++ b/tdrs-backend/tdpservice/users/models.py @@ -182,12 +182,12 @@ def is_ocio_staff(self) -> bool: @property def is_ofa_sys_admin(self) -> bool: - """Return whether or not the user is in the ACF OCIO Group.""" + """Return whether or not the user is in the OFA System Admin Group.""" return self.is_in_group("OFA System Admin") @property def is_ofa_admin(self) -> bool: - """Return whether or not the user is in the ACF OCIO Group.""" + """Return whether or not the user is in the OFA Admin Group.""" return self.is_in_group("OFA Admin") @property