feat: Automatically subscribe user that created AN to AN
This commit is contained in:
@@ -163,6 +163,9 @@ class User(AbstractUser):
|
||||
def get_notifications_url(self):
|
||||
return self.get_absolute_url()
|
||||
|
||||
def get_unread_notifications(self):
|
||||
return BaseNotification.objects.filter(user=self, read=False)
|
||||
|
||||
def get_num_unread_notifications(self):
|
||||
return BaseNotification.objects.filter(user=self, read=False).count()
|
||||
|
||||
|
Reference in New Issue
Block a user