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