Dependencies: no longer considered experimental

This commit is contained in:
Thomas Gelf 2018-07-16 08:28:13 +02:00
parent ac1ba20ab7
commit c7a94f2c39
3 changed files with 7 additions and 12 deletions

View File

@ -3,7 +3,6 @@
namespace Icinga\Module\Director\Controllers;
use Icinga\Module\Director\Web\Controller\ObjectsController;
use dipl\Html\Html;
class DependenciesController extends ObjectsController
{
@ -13,15 +12,4 @@ class DependenciesController extends ObjectsController
$this->tabs()->remove('index');
return $res;
}
public function applyrulesAction()
{
$this->content()->add(Html::tag(
'p',
['class' => 'warning'],
$this->translate('This feature is still experimental')
));
parent::applyrulesAction();
}
}

View File

@ -26,6 +26,7 @@ before switching to a new version.
* FEATURE: timestamped startup log rendering for upcoming Icinga v2.9.0 (#1478)
* FEATURE: allow to switch between multiple Director databases (#1498)
* FEATURE: it's now possible to specify Zones for UserGroups (#1163)
* FEATURE: dependencies are no longer considered experimental
### User Interface
* FEATURE: Admins have now access to JSON download links in many places

View File

@ -1142,6 +1142,7 @@ abstract class DirectorObjectForm extends DirectorForm
/**
* @param bool $required
* @return $this
* @throws \Zend_Form_Exception
*/
protected function addImportsElement($required = null)
{
@ -1223,6 +1224,10 @@ abstract class DirectorObjectForm extends DirectorForm
return $this;
}
/**
* @return $this
* @throws \Zend_Form_Exception
*/
protected function addGroupDisplayNameElement()
{
$this->addElement('text', 'display_name', array(
@ -1240,6 +1245,7 @@ abstract class DirectorObjectForm extends DirectorForm
* @param bool $force
*
* @return $this
* @throws \Zend_Form_Exception
*/
protected function addCheckCommandElements($force = false)
{