security/acme-client: show CA in accounts list

This commit is contained in:
Frank Wall
2022-01-05 12:49:47 +01:00
parent 4e63c89275
commit ed25316489
3 changed files with 8 additions and 1 deletions
+6
View File
@@ -16,6 +16,12 @@ a new version of acme.sh, which has not been released yet.
Added:
* add support for cPanel HTTP API (#2731)
Fixed:
* fix calculation of renewal date (#2721)
Changed:
* show CA in accounts list
3.7
Fixed:
@@ -74,7 +74,7 @@ class AccountsController extends ApiMutableModelControllerBase
public function searchAction()
{
return $this->searchBase('accounts.account', array('enabled', 'name', 'email', 'statusCode', 'statusLastUpdate'), 'name');
return $this->searchBase('accounts.account', array('enabled', 'name', 'email', 'ca', 'statusCode', 'statusLastUpdate'), 'name');
}
/**
@@ -359,6 +359,7 @@ POSSIBILITY OF SUCH DAMAGE.
<th data-column-id="enabled" data-width="6em" data-type="string" data-formatter="rowtoggle">{{ lang._('Enabled') }}</th>
<th data-column-id="name" data-type="string">{{ lang._('Name') }}</th>
<th data-column-id="email" data-type="string">{{ lang._('E-Mail') }}</th>
<th data-column-id="ca" data-type="string">{{ lang._('CA') }}</th>
<th data-column-id="statusCode" data-type="string" data-formatter="accountstatus">{{ lang._('Status') }}</th>
<th data-column-id="statusLastUpdate" data-type="string" data-formatter="acmestatusdate">{{ lang._('Registration Date') }}</th>
<th data-column-id="commands" data-width="7em" data-formatter="commands" data-sortable="false">{{ lang._('Commands') }}</th>