Align .editorconfig files Move Controller logic to DMO classes GlobalVars.AppSettings = Models.AppSettings.GetFromConfigurationManager(); Question EditorConfig Project level editorconfig Format White Spaces AppSetting when EnvironmentVariable not set Corrective Actions Tests Schedule Actions Tests DMO Tests Controller Tests Get ready to use VSCode IDE
29 lines
981 B
C#
29 lines
981 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Http;
|
|
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
|
|
namespace Fab2ApprovalSystem;
|
|
|
|
public class RouteConfig {
|
|
public static void RegisterRoutes(RouteCollection routes) {
|
|
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
|
|
|
|
routes.MapRoute(
|
|
name: "Default",
|
|
url: "{controller}/{action}/{id}",
|
|
// fixing hyperlinks so that the login page will redirect to them
|
|
// set the default route to the desired landing page, instead of the login page
|
|
// otherwise MVC generates the wrong form action url
|
|
defaults: new { controller = "Home", action = "MyTasks", id = UrlParameter.Optional }
|
|
);
|
|
//routes.MapHttpRoute(
|
|
// name: "ApiRoute",
|
|
// routeTemplate: "api/{controller}/{id}",
|
|
// defaults: new { id = RouteParameter.Optional }
|
|
//);
|
|
}
|
|
} |