2015-06-02 11:56:42 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
2016-03-09 20:53:57 +01:00
|
|
|
class IcingaServiceGroup extends IcingaObjectGroup
|
2015-06-02 11:56:42 +02:00
|
|
|
{
|
|
|
|
protected $table = 'icinga_servicegroup';
|
2016-12-13 09:51:52 +01:00
|
|
|
|
|
|
|
public function supportsAssignments()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2015-06-02 11:56:42 +02:00
|
|
|
}
|