feat: task unread tracking (#1857)

---------

Co-authored-by: Mithilesh Gupta <guptamithilesh@protonmail.com>
Co-authored-by: kolaente <k@knt.li>
This commit is contained in:
Mithilesh Gupta
2025-11-27 19:44:42 +05:30
committed by GitHub
parent 2976d6f676
commit 7dddc5dfa2
18 changed files with 328 additions and 9 deletions

View File

@@ -149,8 +149,8 @@ const {
() => props.viewId,
{position: 'asc'},
() => projectId.value === -1
? 'comment_count'
: ['subtasks', 'comment_count'],
? ['comment_count', 'is_unread']
: ['subtasks', 'comment_count', 'is_unread'],
)
const taskPositionService = ref(new TaskPositionService())