IW4M-Admin/WebfrontCore/Views/Console/_Response.cshtml
RaidMax e77ef69ee8 Added additional properties method to allow easier extension to client properties
updated VPN plugin to use WebClient
message is sent to client trying to execute commands before they are authenticated
fixed rare issue with ToAdmins failing
record bullet distance fraction for client kills (_customcallbacks)
change client level/permissions through webfront
ability to tempban through webfront
2018-09-02 16:59:27 -05:00

12 lines
212 B
Plaintext

@model List<SharedLibraryCore.Dtos.CommandResponseInfo>
@{
Layout = null;
}
@{
foreach (var response in Model)
{
<span class="text-muted">@response.Response</span><br />
}
<hr />
}