Thomas Gelf f1a61e2557 ServiceGroup: allow to assign them to services...
...via assignment rules

fixes #13415
2016-12-13 09:51:52 +01:00

14 lines
227 B
PHP

<?php
namespace Icinga\Module\Director\Objects;
class IcingaServiceGroup extends IcingaObjectGroup
{
protected $table = 'icinga_servicegroup';
public function supportsAssignments()
{
return true;
}
}