GIT: perform LF normalization
This commit is contained in:
@@ -1,43 +1,43 @@
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Routing;
|
||||
using SignalR;
|
||||
|
||||
namespace Disco.Web.Areas.Public
|
||||
{
|
||||
public class PublicAreaRegistration : AreaRegistration
|
||||
{
|
||||
public override string AreaName
|
||||
{
|
||||
get
|
||||
{
|
||||
return "Public";
|
||||
}
|
||||
}
|
||||
|
||||
public override void RegisterArea(AreaRegistrationContext context)
|
||||
{
|
||||
context.Routes.MapConnection<BI.Interop.SignalRHandlers.UserHeldDevices>(
|
||||
"Public_UserHeldDevices_Notifications", "Public/UserHeldDevices/Notifications/{*operation}");
|
||||
|
||||
context.MapRoute(
|
||||
"Public_Credits",
|
||||
"Public/Credits/{id}",
|
||||
new { controller = "Public", action = "Credits", id = UrlParameter.Optional },
|
||||
new string[] { "Disco.Web.Areas.Public.Controllers" }
|
||||
);
|
||||
context.MapRoute(
|
||||
"Public_Licence",
|
||||
"Public/Licence/{id}",
|
||||
new { controller = "Public", action = "Licence", id = UrlParameter.Optional },
|
||||
new string[] { "Disco.Web.Areas.Public.Controllers" }
|
||||
);
|
||||
|
||||
context.MapRoute(
|
||||
"Public_default",
|
||||
"Public/{controller}/{action}/{id}",
|
||||
new { controller = "Public", action = "Index", id = UrlParameter.Optional },
|
||||
new string[] { "Disco.Web.Areas.Public.Controllers" }
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Routing;
|
||||
using SignalR;
|
||||
|
||||
namespace Disco.Web.Areas.Public
|
||||
{
|
||||
public class PublicAreaRegistration : AreaRegistration
|
||||
{
|
||||
public override string AreaName
|
||||
{
|
||||
get
|
||||
{
|
||||
return "Public";
|
||||
}
|
||||
}
|
||||
|
||||
public override void RegisterArea(AreaRegistrationContext context)
|
||||
{
|
||||
context.Routes.MapConnection<BI.Interop.SignalRHandlers.UserHeldDevices>(
|
||||
"Public_UserHeldDevices_Notifications", "Public/UserHeldDevices/Notifications/{*operation}");
|
||||
|
||||
context.MapRoute(
|
||||
"Public_Credits",
|
||||
"Public/Credits/{id}",
|
||||
new { controller = "Public", action = "Credits", id = UrlParameter.Optional },
|
||||
new string[] { "Disco.Web.Areas.Public.Controllers" }
|
||||
);
|
||||
context.MapRoute(
|
||||
"Public_Licence",
|
||||
"Public/Licence/{id}",
|
||||
new { controller = "Public", action = "Licence", id = UrlParameter.Optional },
|
||||
new string[] { "Disco.Web.Areas.Public.Controllers" }
|
||||
);
|
||||
|
||||
context.MapRoute(
|
||||
"Public_default",
|
||||
"Public/{controller}/{action}/{id}",
|
||||
new { controller = "Public", action = "Index", id = UrlParameter.Optional },
|
||||
new string[] { "Disco.Web.Areas.Public.Controllers" }
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user