mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-23 09:29:14 -04:00
added organizationtype to enum
This commit is contained in:
@@ -2,14 +2,15 @@ from collections import OrderedDict
|
||||
|
||||
from werkzeug.utils import cached_property
|
||||
|
||||
from app.enums import OrganizationType
|
||||
from app.models import JSONModel, ModelList, SerialisedModelCollection, SortByNameMixin
|
||||
from app.notify_client.organizations_api_client import organizations_client
|
||||
|
||||
|
||||
class Organization(JSONModel, SortByNameMixin):
|
||||
TYPE_FEDERAL = "federal"
|
||||
TYPE_STATE = "state"
|
||||
TYPE_OTHER = "other"
|
||||
TYPE_FEDERAL = OrganizationType.FEDERAL
|
||||
TYPE_STATE = OrganizationType.STATE
|
||||
TYPE_OTHER = OrganizationType.OTHER
|
||||
|
||||
TYPE_LABELS = OrderedDict(
|
||||
[
|
||||
|
||||
@@ -322,7 +322,7 @@ class Service(JSONModel, SortByNameMixin):
|
||||
|
||||
@property
|
||||
def shouldnt_use_govuk_as_sms_sender(self):
|
||||
return self.organization_type != Organization.TYPE_CENTRAL
|
||||
return self.organization_type != Organization.TYPE_FEDERAL
|
||||
|
||||
@cached_property
|
||||
def sms_senders(self):
|
||||
|
||||
Reference in New Issue
Block a user