How do i Assign Multiple Users to a group??

Confluence User - 28 May, 2016

Example ::
How do I Assign all the users to a group where the grade is employee. (Filter all users and add them, instead of adding them one by one)

user;custom;multiple;assignments

1


30 May, 2016
confluenceUser
confluenceUser
  1. Copy the code in Bean Shell Programming Guide#UseasProcessParticipant
  2. Change line from

    Collection userList = directoryManager.getUsers(null, null, deptId, null, null, null, null, "firstName", false, random, 1);

    to

    Collection userList = directoryManager.getUsers(null, null, null, "GRADE-ID-OF-EMPLOYEE", null, null, null, "firstName", false, random, 1);

Please accept this answer if you find it useful!

RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print