highlight unread DMs in /notifications/messages

remotes/1693045480750635534/spooky-22
Aevann1 2022-09-11 11:06:09 +02:00
parent 9c8bc0fdd6
commit 09422ebf29
1 changed files with 4 additions and 0 deletions

View File

@ -111,6 +111,10 @@ def notifications_messages(v):
next_exists = (len(message_threads) > 25)
listing = message_threads[:25]
comments_unread = g.db.query(Comment).filter(Comment.id.in_(notifs_unread))
for c in comments_unread:
c.unread = True
if request.headers.get("Authorization"): return {"data":[x.json for x in listing]}
return render_template("notifications.html",