In Document Library, Selected items menu there is an option "Download As Zip". I would like to restrict/disable this base on permission,
I modified share-config-custom.xml to restrict the action but he menu item still appears. Am I using the wrong action or modifying the wrong file?
<!– Download folder –>
<action id="folder-download" type="javascript" label="actions.folder.download">
<param name="function">onActionFolderDownload</param>
<permissions>
<permission allow="true">Delete</permission>
</permissions>
<evaluator>evaluator.doclib.action.disableAction</evaluator>
</action>