Only show unread entries in widget

Closes #9083
This commit is contained in:
arkon
2023-02-18 10:51:06 -05:00
parent ef863335e6
commit 3634b52e3a
3 changed files with 18 additions and 2 deletions

View File

@@ -24,3 +24,9 @@ updates:
SELECT *
FROM updatesView
WHERE dateUpload > :after;
getUpdatesByReadStatus:
SELECT *
FROM updatesView
WHERE read = :read
AND dateUpload > :after;