mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-24 00:29:47 -05:00
19 lines
485 B
PHP
19 lines
485 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Businessprocess\Controllers;
|
|
|
|
use Icinga\Module\Businessprocess\Web\Controller;
|
|
use Icinga\Module\Businessprocess\Web\Component\Dashboard;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
/**
|
|
* Show an overview page
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
$this->view->dashboard = Dashboard::create($this->Auth(), $this->storage());
|
|
$this->view->tabs = $this->overviewTab();
|
|
$this->setAutorefreshInterval(15);
|
|
}
|
|
}
|