Files
zod-backend/notifications/constants.py
2023-07-24 15:10:59 +05:30

22 lines
513 B
Python

"""
notification constants file
"""
REGISTRATION = 1
TASK_CREATED = 2
TEST_NOTIFICATION = 99
NOTIFICATION_DICT = {
REGISTRATION: {
"title": "Successfully registered!",
"body": "You have registered successfully. Now login and complete your profile."
},
TASK_CREATED: {
"title": "Task created!",
"body": "Task created successfully."
},
TEST_NOTIFICATION: {
"title": "Test Notification",
"body": "This notification is for testing purpose"
}
}