summaryrefslogtreecommitdiffstats
path: root/lib/notification/notificationcomponent.ti
blob: 13af136918a6bdde2bea396871e9b56ce115eb84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */

#include "base/configobject.hpp"

library notification;

namespace icinga
{

class NotificationComponent : ConfigObject
{
	activation_priority 200;

	[config] bool enable_ha (EnableHA) {
		default {{{ return true; }}}
	};
};

}