3470: Write a method to get unread messages count as POC

This commit is contained in:
Tom Zhao 2024-12-02 14:47:46 +01:00
parent 0d612d44ee
commit 552aaade6e

@ -106,6 +106,17 @@ public class ProjectForumServiceImpl implements ProjectForumService {
return false;
}
public int getUnreadThreadsCount(Project project, User user) {
List<ProjectThread> threads = getThreads(project);
int count = 0;
for (ProjectThread thread : threads) {
if (!basicForumService.isThreadRead(user, thread.getForumThread())) {
count++;
}
}
return count;
}
@Override
public ProjectThread findOne(long threadId) {
return projectThreadRepository.findOne(threadId);