icinga2/lib/icinga/usergroup.ti

21 lines
271 B
Plaintext
Raw Normal View History

2014-05-25 16:23:35 +02:00
#include "icinga/customvarobject.hpp"
2013-10-26 09:41:45 +02:00
namespace icinga
{
class UserGroup : CustomVarObject
2013-10-26 09:41:45 +02:00
{
[config] String display_name {
get {{{
if (m_DisplayName.IsEmpty())
return GetName();
else
return m_DisplayName;
}}}
2013-10-26 09:41:45 +02:00
};
[config] Array::Ptr groups;
2013-10-26 09:41:45 +02:00
};
}