configuration: no more beta for hg restrictions

This commit is contained in:
Thomas Gelf 2017-06-21 21:31:36 +02:00
parent a5854e6dd3
commit beae52c2d9
1 changed files with 3 additions and 3 deletions

View File

@ -8,6 +8,7 @@ $this->providePermission(
); );
$this->providePermission('director/deploy', $this->translate('Allow to deploy configuration')); $this->providePermission('director/deploy', $this->translate('Allow to deploy configuration'));
$this->providePermission('director/hosts', $this->translate('Allow to configure hosts')); $this->providePermission('director/hosts', $this->translate('Allow to configure hosts'));
$this->providePermission('director/services', $this->translate('Allow to configure services'));
$this->providePermission('director/users', $this->translate('Allow to configure users')); $this->providePermission('director/users', $this->translate('Allow to configure users'));
$this->providePermission('director/notifications', $this->translate('Allow to configure notifications')); $this->providePermission('director/notifications', $this->translate('Allow to configure notifications'));
$this->providePermission( $this->providePermission(
@ -19,10 +20,9 @@ $this->providePermission(
$this->providePermission('director/*', $this->translate('Allow unrestricted access to Icinga Director')); $this->providePermission('director/*', $this->translate('Allow unrestricted access to Icinga Director'));
$this->provideRestriction( $this->provideRestriction(
'director/beta-filter/hostgroups', 'director/filter/hostgroups',
$this->translate( $this->translate(
'BETA: Limit access to the given comma-separated list of hostgroups. This' 'Limit access to the given comma-separated list of hostgroups'
. ' restriction might change without pre-announcement'
) )
); );