Files
Umbraco-CMS/src/Umbraco.Web/Mvc/IRenderMvcController.cs
Stephan ed222510f0 Fixes
2018-12-07 13:24:25 +01:00

20 lines
576 B
C#

using System.Web.Mvc;
using Umbraco.Core.Composing;
using Umbraco.Web.Models;
namespace Umbraco.Web.Mvc
{
/// <summary>
/// The interface that must be implemented for a controller to be designated to execute for route hijacking
/// </summary>
public interface IRenderMvcController : IRenderController, IDiscoverable
{
/// <summary>
/// The default action to render the front-end view
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
ActionResult Index(ContentModel model);
}
}