Added option "User must change password at next logon" for the Hosted Organization Users.

This commit is contained in:
dev_amdtel 2015-02-09 20:48:47 +04:00
parent d3c54a3a15
commit 3ffca57a22
22 changed files with 1352 additions and 988 deletions

View file

@ -327,5 +327,12 @@ namespace WebsitePanel.Providers.HostedSolution
set { isVip = value; }
}
private bool userMustChangePassword;
public bool UserMustChangePassword
{
get { return userMustChangePassword; }
set { userMustChangePassword = value; }
}
}
}