Fix resharper complaints
This commit is contained in:
parent
68028b37f2
commit
246111df63
5 changed files with 6 additions and 5 deletions
|
@ -60,11 +60,11 @@ namespace Website
|
|||
routes.MapRoute(
|
||||
name: "blogPages",
|
||||
template: "blog/{action}/{page:int}",
|
||||
new { controller = "Blog", action = "Page", page = 1 });
|
||||
defaults: new { controller = "Blog", action = "Page", page = 1 });
|
||||
routes.MapRoute(
|
||||
name: "blogView",
|
||||
template: "blog/view/{url}",
|
||||
new { controller = "Blog", action = "Entry"});
|
||||
defaults: new { controller = "Blog", action = "Entry"});
|
||||
routes.MapRoute(
|
||||
name: "default",
|
||||
template: "{controller=Home}/{action=Index}/{id?}");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue