notifications and email

This commit is contained in:
Egor Matveev
2022-05-16 18:38:26 +03:00
parent 86cd832f6e
commit 95cd6d06c7
5 changed files with 103 additions and 6 deletions

View File

@@ -26,6 +26,8 @@ class UserInfo(models.Model):
notification_solution_result = models.BooleanField(default=False)
notification_friends = models.BooleanField(default=False)
notification_messages = models.BooleanField(default=False)
notification_telegram = models.BooleanField(default=False)
notification_email = models.BooleanField(default=False)
code = models.IntegerField(null=True, blank=True)
verified = models.BooleanField(default=False)
teacher = models.BooleanField(default=False)