More fixes for enums.

Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
Cliff Hill
2024-01-12 17:27:31 -05:00
parent f120641087
commit 661904e2cd
4 changed files with 38 additions and 28 deletions

View File

@@ -53,6 +53,7 @@ class PermissionType(Enum):
cls.VIEW_ACTIVITY,
)
class ServicePermissionType(Enum):
EMAIL = "email"
SMS = "sms"
@@ -72,7 +73,8 @@ class ServicePermissionType(Enum):
cls.INTERNATIONAL_SMS,
)
class GuestListRecipientType(Enum):
class RecipientType(Enum):
MOBILE = "mobile"
EMAIL = "email"