summaryrefslogtreecommitdiff
path: root/taskapp/utilities/notification.py
diff options
context:
space:
mode:
Diffstat (limited to 'taskapp/utilities/notification.py')
-rw-r--r--taskapp/utilities/notification.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/taskapp/utilities/notification.py b/taskapp/utilities/notification.py
new file mode 100644
index 0000000..816e8bf
--- /dev/null
+++ b/taskapp/utilities/notification.py
@@ -0,0 +1,16 @@
+from pytask.taskapp.models import Notification
+from datetime import datetime
+
+def create_notification(to,subject,message):
+ """
+ creates a notification based on the passed arguments.
+ to - a list of users to which the notification is to be sent
+ subject - subject of the notification message to be sent
+ message - message body of the notification
+ """
+ notification = Notification(sent_date = datetime.now())
+ notification.save()
+ notification.to = to
+ notification.sub = subject
+ notification.message = message
+ notification.save()