diff options
Diffstat (limited to '')
-rw-r--r-- | application/controllers/DeploymentController.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/application/controllers/DeploymentController.php b/application/controllers/DeploymentController.php new file mode 100644 index 0000000..2d35f3c --- /dev/null +++ b/application/controllers/DeploymentController.php @@ -0,0 +1,28 @@ +<?php + +namespace Icinga\Module\Director\Controllers; + +use Icinga\Module\Director\Web\Controller\ActionController; +use Icinga\Module\Director\Objects\DirectorDeploymentLog; +use Icinga\Module\Director\Web\Widget\DeploymentInfo; + +class DeploymentController extends ActionController +{ + protected function checkDirectorPermissions() + { + $this->assertPermission('director/deploy'); + } + + public function indexAction() + { + $info = new DeploymentInfo(DirectorDeploymentLog::load( + $this->params->get('id'), + $this->db() + )); + $this->addTitle($this->translate('Deployment details')); + $this->tabs( + $info->getTabs($this->getAuth(), $this->getRequest()) + )->activate('deployment'); + $this->content()->add($info); + } +} |