dfsfds
parent
79178696e0
commit
a47f561377
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue