mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
security/acme-client: restore item sort order
This commit is contained in:
+1
-1
@@ -71,6 +71,6 @@ class AccountsController extends ApiMutableModelControllerBase
|
||||
|
||||
public function searchAction()
|
||||
{
|
||||
return $this->searchBase('accounts.account', array('enabled', 'name', 'email'));
|
||||
return $this->searchBase('accounts.account', array('enabled', 'name', 'email'), 'name');
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -71,6 +71,6 @@ class ActionsController extends ApiMutableModelControllerBase
|
||||
|
||||
public function searchAction()
|
||||
{
|
||||
return $this->searchBase('actions.action', array('enabled', 'name', 'description'));
|
||||
return $this->searchBase('actions.action', array('enabled', 'name', 'description'), 'name');
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -72,7 +72,7 @@ class CertificatesController extends ApiMutableModelControllerBase
|
||||
|
||||
public function searchAction()
|
||||
{
|
||||
return $this->searchBase('certificates.certificate', array('enabled', 'name', 'altNames', 'description', 'lastUpdate', 'statusCode', 'statusLastUpdate'));
|
||||
return $this->searchBase('certificates.certificate', array('enabled', 'name', 'altNames', 'description', 'lastUpdate', 'statusCode', 'statusLastUpdate'), 'name');
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
+1
-1
@@ -71,6 +71,6 @@ class ValidationsController extends ApiMutableModelControllerBase
|
||||
|
||||
public function searchAction()
|
||||
{
|
||||
return $this->searchBase('validations.validation', array('enabled', 'name', 'description'));
|
||||
return $this->searchBase('validations.validation', array('enabled', 'name', 'description'), 'name');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user