IcingaScheduledDowntime: fix rendering

This commit is contained in:
Thomas Gelf 2019-04-10 17:11:35 +02:00
parent cd13b8124b
commit 3ac99d6be3

View File

@ -15,7 +15,6 @@ class IcingaScheduledDowntime extends IcingaObject
'object_name' => null, 'object_name' => null,
'object_type' => null, 'object_type' => null,
'disabled' => 'n', 'disabled' => 'n',
'display_name' => null,
'author' => null, 'author' => null,
'comment' => null, 'comment' => null,
'fixed' => null, 'fixed' => null,
@ -42,6 +41,13 @@ class IcingaScheduledDowntime extends IcingaObject
'duration' => 'duration', 'duration' => 'duration',
]; ];
protected $propertiesNotForRendering = [
'id',
'apply_to',
'object_name',
'object_type',
];
/** /**
* @return string * @return string
*/ */