mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-29 00:34:03 +02:00
/config/resource: sort resources by name
This commit is contained in:
parent
2a4fdd12d7
commit
9b6b00ebca
@ -310,7 +310,10 @@ class ConfigController extends Controller
|
||||
public function resourceAction()
|
||||
{
|
||||
$this->assertPermission('config/application/resources');
|
||||
$this->view->resources = Config::app('resources', true);
|
||||
$this->view->resources = Config::app('resources', true)->getConfigObject()
|
||||
->setKeyColumn('name')
|
||||
->select()
|
||||
->order('name');
|
||||
$this->createApplicationTabs()->activate('resource');
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user