diff options
author | anoop | 2010-02-23 14:31:54 +0530 |
---|---|---|
committer | anoop | 2010-02-23 14:31:54 +0530 |
commit | 34ddb90df32f71cb3dcae2b024789848823ba622 (patch) | |
tree | dd7ab4d99d2730ea78988b643aa4eb916c66af57 /taskapp/utilities/notification.py | |
parent | e2d8393f8aabe414879bb8b4b7f2910a0c6b8e00 (diff) | |
download | pytask-34ddb90df32f71cb3dcae2b024789848823ba622.tar.gz pytask-34ddb90df32f71cb3dcae2b024789848823ba622.tar.bz2 pytask-34ddb90df32f71cb3dcae2b024789848823ba622.zip |
added utilities for creating notification.
Diffstat (limited to 'taskapp/utilities/notification.py')
-rw-r--r-- | taskapp/utilities/notification.py | 16 |
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() |