diff --git a/src/UntappedWidgetGenerator.Web/IndexModule.cs b/src/UntappedWidgetGenerator.Web/IndexModule.cs index 7601151..89eb06e 100644 --- a/src/UntappedWidgetGenerator.Web/IndexModule.cs +++ b/src/UntappedWidgetGenerator.Web/IndexModule.cs @@ -9,6 +9,7 @@ namespace UntappedWidgetGenerator.Web { public IndexModule() { + Get["/"] = x => { return View["Views/Index/Index.cshtml", "tparnell"]; }; Get["/{username}"] = parameters => { return View["Views/Index/Index.cshtml", (string)parameters.username];