Added change user principalName
Added button to change user password Changes EmailAddresses, user principal name disabled
This commit is contained in:
parent
8a4159a0ff
commit
4c75df5a73
21 changed files with 850 additions and 153 deletions
|
@ -195,6 +195,22 @@ namespace WebsitePanel.EnterpriseServer
|
|||
}
|
||||
|
||||
|
||||
[WebMethod]
|
||||
public int SetUserPrincipalName(int itemId, int accountId, string userPrincipalName, bool inherit)
|
||||
{
|
||||
return OrganizationController.SetUserPrincipalName(itemId, accountId, userPrincipalName,
|
||||
inherit);
|
||||
}
|
||||
|
||||
|
||||
[WebMethod]
|
||||
public int SetUserPassword(int itemId, int accountId, string password)
|
||||
{
|
||||
return OrganizationController.SetUserPassword(itemId, accountId, password);
|
||||
}
|
||||
|
||||
|
||||
|
||||
[WebMethod]
|
||||
public List<OrganizationUser> SearchAccounts(int itemId,
|
||||
string filterColumn, string filterValue, string sortColumn, bool includeMailboxes)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue