This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final String NEW_FREQ_FOR_ALL_GROUP_MEMBERS = 'P'; //P=>On each post, D=>Daily, W=>Weekly, N=>Never | |
final String GROUP_ID = 'CHANGE_ME'; //select id,name from CollaborationGroup | |
final List<CollaborationGroupMember> members = [ | |
select id, NotificationFrequency | |
from CollaborationGroupMember | |
where CollaborationGroupID = :GROUP_ID | |
and NotificationFrequency != :NEW_FREQ_FOR_ALL_GROUP_MEMBERS | |
]; | |
if(members != null && members.size() > 0){ |