Merge
This commit is contained in:
commit
be5146ece1
157 changed files with 183179 additions and 990 deletions
|
@ -62,6 +62,7 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
public const string CustomAttribute2 = "extensionAttribute2";
|
||||
public const string DistinguishedName = "distinguishedName";
|
||||
public const string SID = "objectSid";
|
||||
|
||||
public const string PwdLastSet = "pwdLastSet";
|
||||
public const string UserAccountControl = "UserAccountControl";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -64,7 +64,8 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
string jobTitle,
|
||||
string company, string department, string office, string managerAccountName,
|
||||
string businessPhone, string fax, string homePhone, string mobilePhone, string pager,
|
||||
string webPage, string notes, string externalEmail);
|
||||
string webPage, string notes, string externalEmail,
|
||||
bool userMustChangePassword);
|
||||
|
||||
void SetUserPassword(string organizationId, string accountName, string password);
|
||||
|
||||
|
|
|
@ -327,5 +327,12 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
set { isVip = value; }
|
||||
}
|
||||
|
||||
private bool userMustChangePassword;
|
||||
|
||||
public bool UserMustChangePassword
|
||||
{
|
||||
get { return userMustChangePassword; }
|
||||
set { userMustChangePassword = value; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue