Misc:find mang
Overview
Returna a list of managers of one specific group. For a group provided in the first argument get list of all managers with notify_flag checked.
It is used in macro Notify Group Manager.
Usage
<source lang="javascript"> string misc_find_mang(uuid group) </source>
Results
Return space (' ') separated list of persids to contact table (returned managers).
Examples
<source lang="javascript"> string contact_persid; if (!is_null(group)) { contact_persid = misc::find_mang(group); } </source>