mirror of https://github.com/Icinga/icinga2.git
14 lines
180 B
Plaintext
14 lines
180 B
Plaintext
|
#include "base/dynamicobject.hpp"
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class NotificationComponent : DynamicObject
|
||
|
{
|
||
|
[config] bool enable_ha (EnableHA) {
|
||
|
default {{{ return true; }}}
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|