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
|
@ -125,6 +125,20 @@ namespace WebsitePanel.Server
|
|||
}
|
||||
|
||||
|
||||
[WebMethod, SoapHeader("settings")]
|
||||
public void SetUserPassword(string organizationId, string accountName, string password)
|
||||
{
|
||||
Organization.SetUserPassword(organizationId, accountName, password);
|
||||
}
|
||||
|
||||
|
||||
[WebMethod, SoapHeader("settings")]
|
||||
public void SetUserPrincipalName(string organizationId, string accountName, string userPrincipalName)
|
||||
{
|
||||
Organization.SetUserPrincipalName(organizationId, accountName, userPrincipalName);
|
||||
}
|
||||
|
||||
|
||||
[WebMethod, SoapHeader("settings")]
|
||||
public void DeleteOrganizationDomain(string organizationDistinguishedName, string domain)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue