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