mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-28 16:24:05 +02:00
Add IcingaUserGroupMember Object
This commit is contained in:
parent
00a4bc39f4
commit
49f7afc2ff
27
library/Director/Objects/IcingaUserGroupMember.php
Normal file
27
library/Director/Objects/IcingaUserGroupMember.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace Icinga\Module\Director\Objects;
|
||||
|
||||
class IcingaUserGroupMember extends IcingaObject
|
||||
{
|
||||
protected $keyName = array('user_id', 'usergroup_id');
|
||||
|
||||
protected $table = 'icinga_usergroup_user';
|
||||
|
||||
protected $defaultProperties = array(
|
||||
'usergroup_id' => null,
|
||||
'user_id' => null,
|
||||
);
|
||||
|
||||
public function onInsert()
|
||||
{
|
||||
}
|
||||
|
||||
public function onUpdate()
|
||||
{
|
||||
}
|
||||
|
||||
public function onDelete()
|
||||
{
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user