3470: Write a method to get unread messages count as POC
This commit is contained in:
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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user