File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/Server/Coderr.Server.Web/Controllers Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 28
28
_ReSharper * /
29
29
[Tt ]est [Rr ]esult *
30
30
* /packages /* /
31
- src / * /.vs /*
32
- src / * /packages /* /
31
+ * * /.vs /*
32
+ * * /packages /* /
33
33
src /Tools /MarkdownToNamespaceDoc /packages /* /
34
34
src /Tools /TsGenerator /.vs /*
35
35
src /Help /*
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace codeRR.Server.Web.Controllers
9
9
[ Authorize ]
10
10
public class HomeController : Controller
11
11
{
12
- private IQueryBus _queryBus ;
12
+ private readonly IQueryBus _queryBus ;
13
13
14
14
public HomeController ( IQueryBus queryBus1 )
15
15
{
@@ -22,10 +22,10 @@ public async Task<ActionResult> Index()
22
22
if ( apps . Length == 0 )
23
23
return RedirectToAction ( "Application" , "Wizard" ) ;
24
24
25
+ if ( ! Request . Path . EndsWith ( "/" ) )
26
+ return Redirect ( Request . Path + "/" ) ;
27
+
25
28
return View ( ) ;
26
29
}
27
-
28
-
29
-
30
30
}
31
31
}
You can’t perform that action at this time.
0 commit comments