Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
5.1 EE SP2 (5.1.5), 5.2 EE (5.2.4)
-
All
Description
A new method has been added to MBStatsUserLocalService that returns the total number of message board post by a user across all communities/organizations. The new method is:
public int getMessageCountByUserId(long userId)
As part of this improvement, the following methods in MBStatsUserLocalService has been deprecated:
public void deleteStatsUserByGroupId(long groupId)
public void deleteStatsUserByUserId(long userId)
public List<MBStatsUser> getStatsUsers(long groupId, int start, int end)
public int getStatsUsersCount(long groupId)
Please use the following methods instead:
public void deleteStatsUsersByGroupId(long groupId)
public void deleteStatsUsersByUserId(long userId)
public List<MBStatsUser> getStatsUsersByGroupId(long groupId, int start, int end)
public int getStatsUsersByGroupIdCount(long groupId)
Attachments
Issue Links
- is related to
-
LPS-3458 Summary portlet in WOL plugin post count display
- Closed