Skip to main content
SCE Documentation

MVC Routes

SCE Registers the following routes:

  • SCEHomePageOverride
    • Routes "/" to PagesController.DefaultPage
    • Renders the default page if there is one.
  • SCEPages
    • The main route for SCE.
    • Routes "/Pages/{UriName}" to PagesController.Page(string UriName)
    • Will render the page given by UriName.
  • SCELogOn
    • Routes "/LogOn" to AccountController.LogOn()
  • SCELogOff
    • Routes "/LogOff" to AccountController.LogOff()
  • SCELogOnCAsCallback
    • Routes "/SCELogOnCasCallback" to AccountController.ExternalLogOnCallback()
  • SCEAdmin
    • Routes "/Admin/{action}/{arg1}" to AdminController.{Action}(object {arg1})