]> granicus.if.org Git - icinga2/blob - lib/notification/notificationcomponent.ti
Fix spelling errors.
[icinga2] / lib / notification / notificationcomponent.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #include "base/configobject.hpp"
4
5 library notification;
6
7 namespace icinga
8 {
9
10 class NotificationComponent : ConfigObject
11 {
12         activation_priority 200;
13
14         [config] bool enable_ha (EnableHA) {
15                 default {{{ return true; }}}
16         };
17 };
18
19 }