How to avoid role inheritance from RTC project area to its team area level
![]()
Maheswari Karuppiah (8●1●6)
| asked Jun 08 '18, 2:47 a.m.
edited Jun 08 '18, 7:16 a.m. by Ralph Schoon (61.8k●3●36●43) 1. Get members from the project area
curl -k -u %USER%:%PASSWORD% -o "proj_%%a.xml" -H "Accept: application/xml" !P_URL!/members
2. Role remapped
3. Delete members from the project area
curl -D - -k -u %USER%:%PASSWORD% -X DELETE !P_URL!/members
4. Get members from the team area
curl -k -u %USER%:%PASSWORD% -o "team_%%i.xml" -H "Accept: application/xml" !T_URL!/members
The output xml file from Step 4 is giving all the roles inherited from Project area.
Pls let us know how to avoid this role inheritance
|