MukeshKapoor25's picture
refactor(notification-ms): remove template CRUD and JWT config from notification service
e32375c
raw
history blame contribute delete
328 Bytes
"""
Notification template enums.
CRUD is managed by SCM microservice.
Only enums kept here for dispatcher template resolution.
"""
from enum import Enum
class TemplateChannel(str, Enum):
SMS = "sms"
EMAIL = "email"
class TemplateStatus(str, Enum):
ACTIVE = "active"
DRAFT = "draft"
ARCHIVED = "archived"