Change Startup page - serenity-is/Serenity GitHub Wiki
Splitted the cheat sheet of Wesley Huang into more specific parts for easier finding the topics.
To change the Starting Page, go to the xyzPage.cs
you want to be your initial page and update the 'Route' attribute to [Route("~/")]
on the Action Result.
[RoutePrefix("Dashboard"), Route("{action=index}")]
public class xyzController : Controller
{
[Authorize, HttpGet, Route("~/")]
public ActionResult Index()
{