notification set up and celery configuration

This commit is contained in:
abutalib-kiwi
2023-07-19 16:24:53 +05:30
parent 2e7d36485c
commit 3223a2b050
10 changed files with 200 additions and 5 deletions

View 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"
}
}