| 17 | { } |
| 18 | |
| 19 | Dictionary::Ptr HostGroupDbObject::GetConfigFields() const |
| 20 | { |
| 21 | HostGroup::Ptr group = static_pointer_cast<HostGroup>(GetObject()); |
| 22 | |
| 23 | return new Dictionary({ |
| 24 | { "alias", group->GetDisplayName() }, |
| 25 | { "notes", group->GetNotes() }, |
| 26 | { "notes_url", group->GetNotesUrl() }, |
| 27 | { "action_url", group->GetActionUrl() } |
| 28 | }); |
| 29 | } |
| 30 | |
| 31 | Dictionary::Ptr HostGroupDbObject::GetStatusFields() const |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected