update functionallity enterprise storage
This commit is contained in:
parent
922009d402
commit
8784e493d5
28 changed files with 10952 additions and 8121 deletions
|
@ -42,6 +42,8 @@ using WebsitePanel.Server.Utils;
|
|||
using WebsitePanel.Providers.ResultObjects;
|
||||
using WebsitePanel.Providers.WebAppGallery;
|
||||
using WebsitePanel.Providers.Common;
|
||||
using Microsoft.Web.Administration;
|
||||
using Microsoft.Web.Management.Server;
|
||||
|
||||
namespace WebsitePanel.Server
|
||||
{
|
||||
|
@ -1621,5 +1623,21 @@ namespace WebsitePanel.Server
|
|||
return WebProvider.CheckCertificate(webSite);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Directory Browsing
|
||||
|
||||
[WebMethod, SoapHeader("settings")]
|
||||
public bool GetDirectoryBrowseEnabled(string siteId)
|
||||
{
|
||||
return WebProvider.GetDirectoryBrowseEnabled(siteId);
|
||||
}
|
||||
|
||||
[WebMethod, SoapHeader("settings")]
|
||||
public void SetDirectoryBrowseEnabled(string siteId, bool enabled)
|
||||
{
|
||||
WebProvider.SetDirectoryBrowseEnabled(siteId, enabled);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue