aboutsummaryrefslogtreecommitdiff
path: root/server/static/js/table.js
diff options
context:
space:
mode:
authorNiall Sheridan <nsheridan@gmail.com>2018-08-23 22:29:46 +0100
committerNiall Sheridan <nsheridan@gmail.com>2018-08-23 22:29:46 +0100
commiteb1184b284ea37cc31556e3598916ac9c3fa6939 (patch)
tree20131b8be8e77ad1e575f8d616bf2294d3cfb888 /server/static/js/table.js
parent99225736d41e86c7f47eac4db3455b18178bba24 (diff)
Record request reason in the db instead of logging
Diffstat (limited to 'server/static/js/table.js')
-rw-r--r--server/static/js/table.js3
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"];