diff options
author | Niall Sheridan <nsheridan@gmail.com> | 2018-08-23 22:29:46 +0100 |
---|---|---|
committer | Niall Sheridan <nsheridan@gmail.com> | 2018-08-23 22:29:46 +0100 |
commit | eb1184b284ea37cc31556e3598916ac9c3fa6939 (patch) | |
tree | 20131b8be8e77ad1e575f8d616bf2294d3cfb888 /server/static/js | |
parent | 99225736d41e86c7f47eac4db3455b18178bba24 (diff) |
Record request reason in the db instead of logging
Diffstat (limited to 'server/static/js')
-rw-r--r-- | server/static/js/table.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/static/js/table.js b/server/static/js/table.js index 8dcf0f0..c1e2fa2 100644 --- a/server/static/js/table.js +++ b/server/static/js/table.js @@ -12,7 +12,8 @@ function reqListener() { row.insertCell(1).innerHTML = el.created_at; row.insertCell(2).innerHTML = el.expires; row.insertCell(3).innerHTML = el.principals; - row.insertCell(4).innerHTML = el.revoked; + row.insertCell(4).innerHTML = el.message; + row.insertCell(5).innerHTML = el.revoked; // Index keyid and principals. row.cells[0].classList = ["keyid"]; row.cells[3].classList = ["principals"]; |