Merge commit
This commit is contained in:
commit
282fc37fb9
120 changed files with 7282 additions and 4198 deletions
|
@ -122,6 +122,12 @@ namespace WebsitePanel.EnterpriseServer
|
|||
return RemoteDesktopServicesController.GetRdsServer(rdsSeverId);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public ResultObject SetRDServerNewConnectionAllowed(int itemId, bool newConnectionAllowed, int rdsSeverId)
|
||||
{
|
||||
return RemoteDesktopServicesController.SetRDServerNewConnectionAllowed(itemId, newConnectionAllowed, rdsSeverId);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public List<RdsServer> GetCollectionRdsServers(int collectionId)
|
||||
{
|
||||
|
|
|
@ -43,6 +43,7 @@ using WebsitePanel.Providers.DNS;
|
|||
using WebsitePanel.Server;
|
||||
using WebsitePanel.Providers.ResultObjects;
|
||||
using WebsitePanel.Providers;
|
||||
using WebsitePanel.Providers.DomainLookup;
|
||||
|
||||
namespace WebsitePanel.EnterpriseServer
|
||||
{
|
||||
|
@ -521,6 +522,13 @@ namespace WebsitePanel.EnterpriseServer
|
|||
#endregion
|
||||
|
||||
#region Domains
|
||||
|
||||
[WebMethod]
|
||||
public List<DnsRecordInfo> GetDomainDnsRecords(int domainId)
|
||||
{
|
||||
return ServerController.GetDomainDnsRecords(domainId);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public List<DomainInfo> GetDomains(int packageId)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue