LeafInput/NotifyComplete route

This commit is contained in:
2017-01-20 08:48:28 -05:00
parent b80f02a25e
commit 6e9521cf61
4 changed files with 18 additions and 2 deletions
+7
View File
@@ -25,6 +25,13 @@ namespace LeafWeb.WebCms.App_Start
new { controller = "Results", action = "Download" } // Parameter defaults
);
// route for downloading results
RouteTable.Routes.MapRoute(
"NotifyComplete", // Route name
"LeafInput/NotifyComplete", // URL with parameters
new { controller = "LeafInput", action = "NotifyComplete" } // Parameter defaults
);
base.ApplicationStarted(umbracoApplication, applicationContext);
}
}