diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-10-29 22:45:13 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-10-29 22:45:13 -0400 |
commit | 359e1df431fa160993f0640b3458a95a8ee831d7 (patch) | |
tree | 60f6919131250932e356431905e20ec209f76884 /src/SMAPI.Web/Controllers/LogParserController.cs | |
parent | 13baaf8920f4a80ac3c0cd41a16b9afb1b993048 (diff) | |
download | SMAPI-359e1df431fa160993f0640b3458a95a8ee831d7.tar.gz SMAPI-359e1df431fa160993f0640b3458a95a8ee831d7.tar.bz2 SMAPI-359e1df431fa160993f0640b3458a95a8ee831d7.zip |
redirect root to log parser (#358)
Diffstat (limited to 'src/SMAPI.Web/Controllers/LogParserController.cs')
-rw-r--r-- | src/SMAPI.Web/Controllers/LogParserController.cs | 1 |
1 files changed, 1 insertions, 0 deletions
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 /// <summary>Render the log parser UI.</summary> /// <param name="id">The paste ID.</param> [HttpGet] + [Route("")] [Route("log")] [Route("log/{id}")] public ViewResult Index(string id = null) |