Yamini
Returning Observer

How to fetch all users from an external group?

Hello Everyone,

So in our project we have some groups created in Firstspirit externally these groups are managed in a separate portal outside Firstspirit.
We can only see the names of external groups in the server manager, the user list cannot be accesed.

These groups work fine on an object if these groups are added from Extras--> change permissions

However in a script we have a requirement to display the names of all the users from this external groups, how can we do so?

0 Kudos
3 Replies
Yamini
Returning Observer

projectGroups = project.getGroups();  

     for(group:projectGroups){  
          if( group.getName().contains("E0553-CMEA-CADHB-Editorial") ){  
             users = group.getUsers();  // I get list empty here, but if this group is added to any page/page ref the rights for the members of these group work! 
             for(i=0;i<users.length;i++){  

             context.logInfo("user name is : "+users[i].getLoginName());
             usernames = "test";
             usernames = usernames+users[i].getLoginName();
   			   }  
}
}
0 Kudos
hoebbel
Crownpeak employee

Hello Yamini,

The cause of the behavior is that an external group doesn't know its members at all. Instead, when a user logs in, the system checks which external groups he or she fits into and assigns them to him or her.
So you have to do it the other way around and ask the users to which external groups they belonged at the last login. (<user>.getExternalGroups())
ATTENTION: the data is of course more or less outdated, depending on when the user last logged into FirstSpirit and what changes have been made to the external user management (LDAP?) since then.
Alternatively, the corresponding information can also be determined in the external user management system by checking there (outside of FirstSpirit) to which users the definition of the external group applies.

Best regards
Holger

0 Kudos

Hi, how does this correspond to workflows? We are currently trying to implement a release workflow and would like to select external users for a review of the selected element. Even tough the external groups can be selected, the individual users cannot.

0 Kudos