
admin.groupGetAuditEnabled( config as element(configuration), group-id as (Number|String) ) as Boolean
This function returns the value for the audit enabled setting from the specified group.
http://marklogic.com/xdmp/privileges/admin/group
http://marklogic.com/xdmp/privileges/admin/group/{id}
const admin = require('/MarkLogic/admin.xqy');
var config = admin.getConfiguration()
admin.groupGetAuditEnabled(config,
admin.groupGetId(config, "myGroup"))
//returns the failover enable value
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.