Loading TOC...

sec.collectionAddPermissions

sec.collectionAddPermissions(
   uri as String,
   permissions as element(sec.permission)[]
) as null

Summary

Add the permissions $permissions to the protected collection identified by $uri.

Parameters
uri The URI of a collection.
permissions New permissions to add to that protected collection. If $permissions is the empty sequence, the function will have no effect.

Required Privileges

http://marklogic.com/xdmp/privileges/collection-add-permissions

Usage Notes

If a protected collection with uri equal to $uri is not found, an error is raised.

This function must be executed against the security database.

Example


// execute this against the security database

declareUpdate();
const sec = require('/MarkLogic/security.xqy');

sec.collectionAddPermissions("http://marklogic.com/dev_modules",
                               [xdmp.permission("Developer", "insert","element")])

// Adds the Developer(insert) permission to the "dev_modules" collection. 
  

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.