Leaf Input and Submit

This commit is contained in:
2016-12-06 11:53:30 -05:00
parent a3b8b7a881
commit 6fd7e46f5d
74 changed files with 56144 additions and 1291 deletions
+10 -1
View File
@@ -1,4 +1,6 @@
using System.Web.Optimization;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using Backload.Bundles;
using LeafWeb.Core.DAL;
using Umbraco.Core;
@@ -13,6 +15,13 @@ namespace LeafWeb.WebCms.App_Start
HangfireBootstrapper.Instance.Start();
BackloadBundles.RegisterBundles(BundleTable.Bundles);
// route for downloading results
RouteTable.Routes.MapRoute(
"ResultsDownload", // Route name
"Results/Download", // URL with parameters
new { controller = "Results", action = "Download" } // Parameter defaults
);
base.ApplicationStarted(umbracoApplication, applicationContext);
}
}