security/acme-client: show more options in list view

This commit is contained in:
Frank Wall
2021-08-05 23:36:02 +02:00
parent bc0b544b02
commit 052d0c4fe0
5 changed files with 5 additions and 2 deletions
+1
View File
@@ -21,6 +21,7 @@ Changed:
* remove the legacy log file and only rely on syslog logging (#2366)
* update tooltip style for 21.7 (#2188)
* add tooltips for account command buttons (#2188)
* show more options in list view for challenge types and automations
Removed:
* remove obsolete account parameters: certificateAuthority, lastUpdate
@@ -72,7 +72,7 @@ class ActionsController extends ApiMutableModelControllerBase
public function searchAction()
{
return $this->searchBase('actions.action', array('enabled', 'name', 'description'), 'name');
return $this->searchBase('actions.action', array('enabled', 'name', 'type', 'description'), 'name');
}
public function sftpGetIdentityAction()
@@ -73,6 +73,6 @@ class ValidationsController extends ApiMutableModelControllerBase
public function searchAction()
{
return $this->searchBase('validations.validation', array('enabled', 'name', 'description'), 'name');
return $this->searchBase('validations.validation', array('enabled', 'name', 'method', 'description'), 'name');
}
}
@@ -222,6 +222,7 @@ POSSIBILITY OF SUCH DAMAGE.
<tr>
<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="type" data-type="string">{{ lang._('Command') }}</th>
<th data-column-id="description" data-type="string">{{ lang._('Description') }}</th>
<th data-column-id="commands" data-width="7em" data-formatter="commands" data-sortable="false">{{ lang._('Commands') }}</th>
<th data-column-id="uuid" data-type="string" data-identifier="true" data-visible="false">{{ lang._('ID') }}</th>
@@ -115,6 +115,7 @@ POSSIBILITY OF SUCH DAMAGE.
<tr>
<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="method" data-type="string">{{ lang._('Challenge Type') }}</th>
<th data-column-id="description" data-type="string">{{ lang._('Description') }}</th>
<th data-column-id="commands" data-width="7em" data-formatter="commands" data-sortable="false">{{ lang._('Commands') }}</th>
<th data-column-id="uuid" data-type="string" data-identifier="true" data-visible="false">{{ lang._('ID') }}</th>