mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 13:45:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			806 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			806 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 | 
						|
 | 
						|
#include "db_ido/usergroupdbobject.hpp"
 | 
						|
#include "db_ido/dbtype.hpp"
 | 
						|
#include "db_ido/dbvalue.hpp"
 | 
						|
#include "base/objectlock.hpp"
 | 
						|
#include "base/initialize.hpp"
 | 
						|
#include "base/configtype.hpp"
 | 
						|
 | 
						|
using namespace icinga;
 | 
						|
 | 
						|
REGISTER_DBTYPE(UserGroup, "contactgroup", DbObjectTypeContactGroup, "contactgroup_object_id", UserGroupDbObject);
 | 
						|
 | 
						|
UserGroupDbObject::UserGroupDbObject(const DbType::Ptr& type, const String& name1, const String& name2)
 | 
						|
	: DbObject(type, name1, name2)
 | 
						|
{ }
 | 
						|
 | 
						|
Dictionary::Ptr UserGroupDbObject::GetConfigFields() const
 | 
						|
{
 | 
						|
	UserGroup::Ptr group = static_pointer_cast<UserGroup>(GetObject());
 | 
						|
 | 
						|
	return new Dictionary({
 | 
						|
		{ "alias", group->GetDisplayName() }
 | 
						|
	});
 | 
						|
}
 | 
						|
 | 
						|
Dictionary::Ptr UserGroupDbObject::GetStatusFields() const
 | 
						|
{
 | 
						|
	return nullptr;
 | 
						|
}
 |