Skip to content
Snippets Groups Projects
Verified Commit 4d61aae5 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Move notification registration into save() method

parent 0fb4721d
No related branches found
No related tags found
No related merge requests found
Pipeline #465 failed
......@@ -31,18 +31,14 @@ class Notification(models.Model):
app = models.CharField(max_length=100)
read = models.BooleanField(default=False)
mailed = models.BooleanField(default=False)
created_at = models.DateTimeField(default=timezone.now)
def __str__(self):
return self.title
def register_notification(user, title, description, app="SchoolApps", link=""):
n = Notification(user=user, title=title, description=description, app=app, link=link)
n.save()
context = {
'notification': n
}
send_mail_with_template(title, [user.email], "mail/notification.txt", "mail/notification.html", context)
def save(self):
super().save()
if not self.mailed:
send_mail_with_template(title, [user.email], "mail/notification.txt", "mail/notification.html", context)
self.mailed = True
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment