We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccec1a3 commit 465fd43Copy full SHA for 465fd43
netmockery/Views/Responses/RequestDetails.cshtml
@@ -9,6 +9,7 @@
9
10
<ul>
11
<li>Timestamp: <code>@Model.Timestamp.ToString("HH:mm:ss.fff")</code></li>
12
+ <li>Method: @Model.Method</li>
13
<li>Path: <code>@Model.RequestPath</code></li>
14
@if (! string.IsNullOrEmpty(Model.QueryString))
15
{
netmockery/Views/Shared/Components/ResponseTable/Default.cshtml
@@ -20,7 +20,7 @@
20
21
<tr>
22
<td>@item.Timestamp.ToString("HH:mm:ss.fff")</td>
23
- <td>@(item.RequestPath)@(item.QueryString)</td>
+ <td>@item.Method @(item.RequestPath)@(item.QueryString)</td>
24
<td>
25
@if (item.Endpoint != null)
26
0 commit comments