]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1576667 - Add creation timestamp to the user_api_keys table to show when an api...
authordklawren <dklawren@users.noreply.github.com>
Thu, 29 Aug 2019 22:14:20 +0000 (18:14 -0400)
committerGitHub <noreply@github.com>
Thu, 29 Aug 2019 22:14:20 +0000 (18:14 -0400)
template/en/default/account/prefs/apikey.html.tmpl

index f2d4d875c9913a2745cf32d335b50a7294767ca7..d3d95d1b49c3fb8fd1d0b6296f995c93053ce20b 100644 (file)
@@ -32,6 +32,7 @@ here. Sticky keys may only be used from the last IP that used the API key, and c
   <tr>
     <th>API key</th>
     <th>Description (optional)</th>
+    <th>Created</th>
     <th>Last used</th>
     <th>Sticky</th>
     <th>Revoked</th>
@@ -48,6 +49,9 @@ here. Sticky keys may only be used from the last IP that used the API key, and c
           id="description_[% api_key.id FILTER html %]"
           value="[% api_key.description FILTER html %]">
       </td>
+      <td>
+        [% api_key.creation_ts FILTER time %]
+      </td>
       [% IF api_key.last_used %]
         <td>[% api_key.last_used FILTER time %]
           [% IF api_key.last_used_ip %] ([% api_key.last_used_ip FILTER html %]) [% END %]