Skip to content

Commit 9ad1fb4

Browse files
authored
Local delegation proxy and input labels (#161)
* intercepts calls to accessmanagement for local delegation * sets correct html for for labels in home view
1 parent e89b77c commit 9ad1fb4

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/Filters/ProxyMiddleware.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ IHttpForwarder forwarder
3232
new Regex("^/Home/"),
3333
new Regex("^/localtestresources/"),
3434
new Regex("^/LocalPlatformStorage/"),
35+
new Regex("^/accessmanagement/"),
3536
new Regex("^/authentication/"),
3637
new Regex("^/authorization/"),
3738
new Regex("^/profile/"),

src/Views/Home/Index.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
{
7171
@Html.AntiForgeryToken();
7272
<div class="form-group">
73-
<label for="exampleInputEmail1">Select test users</label>
73+
<label for="UserSelect">Select test users</label>
7474
@Html.DropDownListFor(model => model.UserSelect, Model.TestUsers, new { Class = "form-control" })
7575
</div>
7676
@if(!Model.AppModeIsHttp)
@@ -81,7 +81,7 @@
8181
</div>
8282
}
8383
<div class="form-group">
84-
<label for="exampleInputEmail1">Select your authentication level</label>
84+
<label for="AuthenticationLevel">Select your authentication level</label>
8585
@Html.DropDownListFor(model => model.AuthenticationLevel, Model.AuthenticationLevels, new { Class = "form-control" })
8686
</div>
8787
@if(Model.AppModeIsHttp)

0 commit comments

Comments
 (0)