Fixes sni-related bug where customers and resellers are not allowed to see website properties.

This commit is contained in:
Olov Karlsson 2014-10-31 20:02:19 +01:00
parent 94d79fefd4
commit 750587f38d
4 changed files with 16 additions and 9 deletions

View file

@ -63,6 +63,7 @@ namespace WebsitePanel.Providers.Web
private bool heliconApeInstalled;
private bool heliconApeEnabled;
private HeliconApeStatus heliconApeStatus;
private bool sniEnabled;
public WebSite()
{
@ -187,6 +188,12 @@ namespace WebsitePanel.Providers.Web
get { return this.heliconApeStatus; }
set { this.heliconApeStatus = value; }
}
public bool SniEnabled
{
get { return this.sniEnabled; }
set { this.sniEnabled = value; }
}
}
[Flags]