Fixes build with ctor change to UmbracoHelper

This commit is contained in:
Shannon
2018-12-05 16:59:33 +11:00
parent b48a7fa4a9
commit 1eba69b070
16 changed files with 29 additions and 39 deletions

View File

@@ -13,13 +13,11 @@ namespace Umbraco.Web
protected UmbracoAuthorizedHttpHandler()
{ }
protected UmbracoAuthorizedHttpHandler(UmbracoContext umbracoContext, ServiceContext services, CacheHelper appCache)
: base(umbracoContext, services, appCache)
protected UmbracoAuthorizedHttpHandler(UmbracoContext umbracoContext, ServiceContext services)
: base(umbracoContext, services)
{
}
private bool _hasValidated = false;
/// <summary>
/// Checks if the umbraco context id is valid
/// </summary>