Make function names available in the API

fixes #5064
This commit is contained in:
Gunnar Beutner 2017-03-15 11:18:08 +01:00
parent 39f1b4589a
commit 645e260f9b
1 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,9 @@ namespace icinga
abstract class Function
{
String "name";
bool side_effect_free;
bool deprecated;
[config] String "name";
[config] bool side_effect_free;
[config] bool deprecated;
};
}