Skip to content

Instantly share code, notes, and snippets.

@sshibani
Last active December 29, 2015 12:15
Show Gist options
  • Save sshibani/59553e4293793f2d220d to your computer and use it in GitHub Desktop.
Save sshibani/59553e4293793f2d220d to your computer and use it in GitHub Desktop.
public class PageController : TridionControllerBase
{
public PageController(IPageFactory pageFactor,
IComponentPresentationFactory componentPresentationFactory,
ILogger logger,
IDD4TConfiguration configuration) :
base(pageFactor, componentPresentationFactory, logger, configuration)
{
public override ActionResult Page(string url)
{
return base.Page(url);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment