Object/IcingaUser: Add boolean render methods to affected properties

This commit is contained in:
Alexander Fuhr 2015-06-12 11:11:51 +02:00
parent db58cb8882
commit 750ed26ef6
1 changed files with 5 additions and 0 deletions

View File

@ -17,4 +17,9 @@ class IcingaUser extends IcingaObject
'zone_id' => null,
'object_type' => null,
);
protected function renderEnable_notifications()
{
return $this->renderBooleanProperty('enable_notifications');
}
}