fixed minor error

This commit is contained in:
daniel 2018-03-12 19:31:24 +01:00
parent 2fdc520a36
commit c8118c2e08
1 changed files with 0 additions and 20 deletions

View File

@ -10143,24 +10143,4 @@ function api_set_metaconsole_synch($keys) {
}
/**
* Returns the collections associated to this agent
*/
function api_get_agent_collections($id_agent) {
// ACL!
$collections = enterprise_hook("collection_get_collections_in_agent", array($id_agent));
echo json_encode($collections);
}
/**
* Returns if collection exists in this node
*/
function api_get_check_collection_id($id_collection) {
// ACL!
$exists = enterprise_hook("collection_exits_directory", array($id_collection));
echo json_encode($exists);
}
?>