Exception modifying admin roles
We have a workflow launched from the end user side. The workflow has an activity that checks out the user view, an activity that updates user attributes, and an activity that checks in the user view. A user logs into the self service (end user ?http://<idm>/user) page, and clicks on the workflow. When the view is getting checked in, we get the error
com.waveset.util.WavesetException: Error modifying admin user good.good: com.waveset.util.WavesetException: Not allowed to modify the Admin Roles of User 'good.good'.
(The user name is good.good)This is how we抮e setting the adminRoles in the activity that抯 updating user attributes:
<Activity name="Update">
<Action>
<expression>
<block trace="true">
<set name="user.accounts[Lighthouse].adminRoles">
<list>
<s>User_Group_Admin</s> <!-- an admin role we抳e defined -->
</list>
</set>
</block>
</expression>
</Action>
</Activity>
I've added the following within the <AdminGroups> element of the EndUser AdminGroup.
<ObjectRef type='AdminGroup' id='#ID#Connect Admin Roles'/>
and still receive the exception

