forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-11-05 20:05:28 +02:00
parent 79178696e0
commit a47f561377
1 changed files with 3 additions and 3 deletions

View File

@ -341,17 +341,17 @@ class User(Base):
@property
@lazy
def unread_notifications(self):
return g.db.query(Notification.id).options(lazyload('*')).filter(Notification.user_id == self.id, Notification.read == False)
return g.db.query(Notification.id).options(lazyload('*')).filter(Notification.user_id == self.id, Notification.read == False).join(Notification.comment)
@property
@lazy
def notifications_count(self):
return self.unread_notifications.count()
return self.unread_notifications.filter(Comment.is_banned == False, Comment.deleted_utc == 0).count()
@property
@lazy
def post_notifications_count(self):
return self.unread_notifications.join(Notification.comment).filter(Comment.author_id == AUTOJANNY_ACCOUNT).count()
return self.unread_notifications.filter(Comment.author_id == AUTOJANNY_ACCOUNT).count()
@property