Add registration workflow

Update unobtrusive Validation
This commit is contained in:
2020-01-10 14:52:11 -05:00
parent e0464cb77c
commit 8452a9cce0
34 changed files with 235 additions and 898 deletions
+3 -3
View File
@@ -18,8 +18,8 @@ namespace LeafWeb.WebCms.App_Start
HangfireBootstrapper.Instance.Start();
BackloadBundles.RegisterBundles(BundleTable.Bundles);
// route for downloading results
RouteTable.Routes.MapRoute(
// route for downloading results, see also URL rewrite rules in web.config
RouteTable.Routes.MapRoute(
"ResultsDownload", // Route name
"Results/Download", // URL with parameters
new { controller = "Results", action = "Download" } // Parameter defaults
@@ -27,5 +27,5 @@ namespace LeafWeb.WebCms.App_Start
base.ApplicationStarted(umbracoApplication, applicationContext);
}
}
}
}