mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-15 18:07:02 +00:00
notification set up and celery configuration
This commit is contained in:
16
notifications/constants.py
Normal file
16
notifications/constants.py
Normal file
@ -0,0 +1,16 @@
|
||||
"""
|
||||
notification constants file
|
||||
"""
|
||||
REGISTRATION = 1
|
||||
TEST_NOTIFICATION = 99
|
||||
|
||||
NOTIFICATION_DICT = {
|
||||
REGISTRATION: {
|
||||
"title": "Successfully registered!",
|
||||
"body": "You have registered successfully. Now login and complete your profile."
|
||||
},
|
||||
TEST_NOTIFICATION: {
|
||||
"title": "Test Notification",
|
||||
"body": "This notification is for testing purpose"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user