mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
security/acme-client: show CA in accounts list
This commit is contained in:
@@ -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:
|
||||
|
||||
+1
-1
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user