no difference b/n NOTIFICATION_TYPE and NOTIFICATION_TYPES

This commit is contained in:
stvnrlly
2023-03-02 14:05:16 -05:00
parent 03e7af2c12
commit 053b6636cf

View File

@@ -1041,8 +1041,7 @@ SMS_PROVIDERS = [SNS_PROVIDER]
EMAIL_PROVIDERS = [SES_PROVIDER]
PROVIDERS = SMS_PROVIDERS + EMAIL_PROVIDERS
NOTIFICATION_TYPE = [EMAIL_TYPE, SMS_TYPE]
notification_types = db.Enum(*NOTIFICATION_TYPE, name='notification_type')
notification_types = db.Enum(*NOTIFICATION_TYPES, name='notification_type')
class ProviderDetails(db.Model):