Fixes: U4-5208 RenderActionInvoker needs to be able to run async so needs to inherit from AsyncControllerActionInvoker

This commit is contained in:
Shannon
2014-07-10 17:29:34 +10:00
parent d5993a4783
commit 6b128ea7d4

View File

@@ -1,12 +1,13 @@
using System.Linq;
using System.Web.Mvc;
using System.Web.Mvc.Async;
namespace Umbraco.Web.Mvc
{
/// <summary>
/// Ensures that if an action for the Template name is not explicitly defined by a user, that the 'Index' action will execute
/// </summary>
public class RenderActionInvoker : ControllerActionInvoker
public class RenderActionInvoker : AsyncControllerActionInvoker
{
/// <summary>