Merge
This commit is contained in:
commit
b815d95310
76 changed files with 3565 additions and 737 deletions
|
@ -211,6 +211,18 @@ namespace WebsitePanel.EnterpriseServer
|
|||
}
|
||||
|
||||
|
||||
[WebMethod]
|
||||
public ResultObject SendUserPasswordRequestSms(int itemId, int accountId, string reason, string phoneTo)
|
||||
{
|
||||
return OrganizationController.SendUserPasswordRequestSms(itemId, accountId, reason, phoneTo);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public void SendUserPasswordRequestEmail(int itemId, int accountId, string reason, string mailTo, bool finalStep)
|
||||
{
|
||||
OrganizationController.SendUserPasswordRequestEmail(itemId, accountId, reason, mailTo, finalStep);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Domains
|
||||
|
|
|
@ -386,5 +386,11 @@ namespace WebsitePanel.EnterpriseServer
|
|||
{
|
||||
return RemoteDesktopServicesController.ShadowSession(itemId, sessionId, control);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public ResultObject ImportCollection(int itemId, string collectionName)
|
||||
{
|
||||
return RemoteDesktopServicesController.ImportCollection(itemId, collectionName);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -59,6 +59,12 @@ namespace WebsitePanel.EnterpriseServer
|
|||
return SystemController.GetSystemSettingsActive(settingsName, decrypt);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public bool CheckIsTwilioEnabled()
|
||||
{
|
||||
return SystemController.CheckIsTwilioEnabled();
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public int SetSystemSettings(string settingsName, SystemSettings settings)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue