| | |
| | | return roleId; |
| | | } |
| | | |
| | | // {"List":[{"List":[{"String":"ROLE_NAME"},{"String":"testrolle1"}]}]} |
| | | function um_show_user_role_list(resp) { |
| | | $("#nutzerrollen").empty(); |
| | | var rollen = resp.List[0]; |
| | |
| | | var rolle = rollen.List[i]; |
| | | $("#rollen").append('<option value=' + rolle.String + '>' + rolle.String + '</option>'); |
| | | } |
| | | //$('#neueRolle').prop( "disabled", true ); |
| | | $('#rolleErteilen').prop( "disabled", true ); |
| | | } |
| | | |
| | |
| | | type: "POST", |
| | | dataType : "html", |
| | | success: function( resp ) { |
| | | //$('#fehler').html('Antwort: ' + resp); |
| | | um_apicall_get_user_list(); |
| | | um_back_from_new_user(); |
| | | }, |
| | |
| | | }); |
| | | } |
| | | |
| | | // public UserRole grantRole(String userId, String roleName) |
| | | function um_apicall_grant_role(userId, roleName, isNewRole) { |
| | | var m = 'grantRole'; |
| | | var u = '../svc/' + m; |
| | |
| | | }); |
| | | } |
| | | |
| | | //public List getUserRoleNames(String userId) |
| | | function um_apicall_get_user_roles(userId) { |
| | | var m = 'getUserRoleNames'; |
| | | var u = '../svc/' + m + '?p=' + userId; |
| | |
| | | type: "GET", |
| | | dataType : "json", |
| | | success: function( resp ) { |
| | | // Antwort in Liste anzeigen |
| | | um_show_user_role_list(resp); |
| | | }, |
| | | error: function( xhr, status, errorThrown ) { |
| | |
| | | type: "GET", |
| | | dataType : "json", |
| | | success: function( resp ) { |
| | | // Antwort in Liste anzeigen |
| | | um_show_role_list(resp); |
| | | }, |
| | | error: function( xhr, status, errorThrown ) { |