jira-27 invite guardian api

This commit is contained in:
jain
2023-07-25 11:17:57 +05:30
parent 096961976d
commit 79e85fa968
10 changed files with 170 additions and 8 deletions

View File

@ -3,6 +3,8 @@ notification constants file
"""
REGISTRATION = 1
TASK_CREATED = 2
INVITED_GUARDIAN = 3
APPROVED_JUNIOR = 4
TEST_NOTIFICATION = 99
NOTIFICATION_DICT = {
@ -14,6 +16,14 @@ NOTIFICATION_DICT = {
"title": "Task created!",
"body": "Task created successfully."
},
INVITED_GUARDIAN: {
"title": "Invite guardian",
"body": "Invite guardian successfully"
},
APPROVED_JUNIOR: {
"title": "Approve junior",
"body": "You have request for associate the junior"
},
TEST_NOTIFICATION: {
"title": "Test Notification",
"body": "This notification is for testing purpose"