icinga2/lib/icinga/user.ti

24 lines
514 B
Plaintext
Raw Normal View History

2013-10-26 09:41:45 +02:00
#include "base/dynamicobject.h"
namespace icinga
{
class User : DynamicObject
{
[config] String display_name {
default {{{ return GetName(); }}}
};
[config] Dictionary::Ptr macros;
[config] Array::Ptr groups;
[config] String notification_period (NotificationPeriodRaw);
[config] int notification_type_filter {
default {{{ return ~(int)0; }}}
};
[config] int notification_state_filter {
default {{{ return ~(int)0; }}}
};
[state] bool enable_notifications;
[state] double last_notification;
};
}