From 359e1df431fa160993f0640b3458a95a8ee831d7 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 29 Oct 2017 22:45:13 -0400 Subject: redirect root to log parser (#358) --- src/SMAPI.Web/Controllers/LogParserController.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/SMAPI.Web/Controllers/LogParserController.cs b/src/SMAPI.Web/Controllers/LogParserController.cs index f143bc5c..454440bb 100644 --- a/src/SMAPI.Web/Controllers/LogParserController.cs +++ b/src/SMAPI.Web/Controllers/LogParserController.cs @@ -52,6 +52,7 @@ namespace StardewModdingAPI.Web.Controllers /// Render the log parser UI. /// The paste ID. [HttpGet] + [Route("")] [Route("log")] [Route("log/{id}")] public ViewResult Index(string id = null) -- cgit