mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-05-26 03:11:58 -04:00
19 lines
459 B
PHP
19 lines
459 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Icinga\Module\Director\Controllers;
|
||
|
|
|
||
|
|
use Exception;
|
||
|
|
use Icinga\Module\Director\Db\Migrations;
|
||
|
|
|
||
|
|
class KickstartController extends DashboardController
|
||
|
|
{
|
||
|
|
public function indexAction()
|
||
|
|
{
|
||
|
|
$this->singleTab($this->view->title = $this->translate('Kickstart'));
|
||
|
|
$this->view->form = $this
|
||
|
|
->loadForm('kickstart')
|
||
|
|
->setEndpoint($this->db()->getDeploymentEndpoint())
|
||
|
|
->handleRequest();
|
||
|
|
}
|
||
|
|
}
|