1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00

Fixed 'privacy' routiung error

This commit is contained in:
Uncled1023 2015-12-23 22:53:22 -08:00
parent c6fdf82486
commit 2db5878512

View File

@ -17,14 +17,14 @@ namespace Teknik.Areas.Privacy
context.MapSubdomainRoute(
"Privacy.Index", // Route name
"dev",
"Privacy/{controller}/{action}", // URL with parameters
"Privacy", // URL with parameters
new { controller = "Privacy", action = "Index" }, // Parameter defaults
new[] { typeof(Controllers.PrivacyController).Namespace }
);
context.MapSubdomainRoute(
"Privacy.Index", // Route name
"privacy",
"{controller}/{action}", // URL with parameters
"", // URL with parameters
new { controller = "Privacy", action = "Index" }, // Parameter defaults
new[] { typeof(Controllers.PrivacyController).Namespace }
);