password reset workflow changed
This commit is contained in:
parent
2f1e740d5a
commit
410b15c2c4
36 changed files with 1229 additions and 255 deletions
|
@ -204,6 +204,12 @@ namespace WebsitePanel.EnterpriseServer
|
|||
return OrganizationController.SendResetUserPasswordPincodeSms(token, phoneTo);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public ResultObject SendResetUserPasswordPincodeEmail(Guid token, string mailTo = null)
|
||||
{
|
||||
return OrganizationController.SendResetUserPasswordPincodeEmail(token, mailTo);
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
|
@ -361,6 +367,12 @@ namespace WebsitePanel.EnterpriseServer
|
|||
OrganizationController.SendResetUserPasswordEmail(itemId, accountId, reason, mailTo, finalStep);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public AccessToken CreatePasswordResetAccessToken(int itemId, int accountId)
|
||||
{
|
||||
return OrganizationController.CreatePasswordResetAccessToken(itemId, accountId);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Security Groups
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue