| 18 | using namespace icinga; |
| 19 | |
| 20 | Dictionary::Ptr FilterUtility::GetTargetForVar(const String& name, const Value& value) |
| 21 | { |
| 22 | return new Dictionary({ |
| 23 | { "name", name }, |
| 24 | { "type", value.GetReflectionType()->GetName() }, |
| 25 | { "value", value } |
| 26 | }); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Controls access to an object or variable based on an ApiUser's permissions. |
nothing calls this directly
no test coverage detected