GUAC-800: Add checkbox for granting/revoking permission to a user to change their own password.

This commit is contained in:
Michael Jumper
2015-04-08 14:44:18 -07:00
parent ced097c374
commit 85c122a8f3
3 changed files with 76 additions and 0 deletions

View File

@@ -56,6 +56,11 @@ THE SOFTWARE.
<td><input type="checkbox" ng-model="permissionFlags.systemPermissions[systemPermissionType.value]"
ng-change="systemPermissionChanged(systemPermissionType.value)"/></td>
</tr>
<tr>
<th>{{'MANAGE_USER.FIELD_HEADER_CHANGE_OWN_PASSWORD' | translate}}</th>
<td><input type="checkbox" ng-model="permissionFlags.userPermissions.UPDATE[user.username]"
ng-change="userPermissionChanged('UPDATE', user.username)"/></td>
</tr>
</table>
</div>