HostGroupsDashlet: hosts permission is not enough

fixes #1237
This commit is contained in:
Thomas Gelf 2017-10-12 17:17:47 +02:00
parent 6490283647
commit 618c51cd69
2 changed files with 3 additions and 1 deletions

View File

@ -41,6 +41,8 @@ before switching to a new version.
### User Interface
* FIX: Assignment filters suggested only Host properties, you have been required
to manually type Service property names
* FIX: Hostgroups Dashlet has been shown to users with restricted permissions,
clicking it used to throw an error
1.4.0
-----

View File

@ -26,6 +26,6 @@ class HostGroupsDashlet extends Dashlet
public function listRequiredPermissions()
{
return array('director/hosts');
return array('director/hostgroups');
}
}