cancel
Showing results for 
Search instead for 
Did you mean: 

Disable Upload & Create Folder in Consumer

raihax
Champ in-the-making
Champ in-the-making
Hi all,


i need to disable copy to .

Version : Alfresco 5.0 b

is there any simple "non coding" way?

if not then plz be gentle Smiley Happy

Thank you,

Best Regards
Raya
2 REPLIES 2

hardik1512
Star Contributor
Star Contributor
Add the below entry under <alfresco-config> tag  in  share-config-custom.xml file(located at either tomcat\webapps\share\WEB-INF\classes\alfresco\web-extension  OR  tomcat\shared\classes\alfresco\web-extension)

<config evaluator="string-compare" condition="DocumentLibrary" replace="true">
    
   <multi-select>
         <action type="action-link" id="onActionDownload" icon="document-download" label="menu.selected-items.download" />
        
       <!–  commented copy to.
       <action type="action-link" id="onActionCopyTo" icon="document-copy-to" label="menu.selected-items.copy" />
         –>
      
       <action type="action-link" id="onActionMoveTo" icon="document-move-to" permission="Delete" label="menu.selected-items.move"/>
         <action type="action-link" id="onActionAssignWorkflow" asset="document" icon="document-assign-workflow" label="menu.selected-items.assign-workflow"/>
         <action type="action-link" id="onActionDelete" icon="document-delete" permission="Delete" label="menu.selected-items.delete" notAspect="hwf:hybridWorkflow,sys:undeletable" />
         <action type="action-link" id="onActionCloudSync" asset="document" icon="document-cloud-sync"  permission="CreateChildren" label="menu.selected-items.cloudSync" notAspect="sync:syncSetMemberNode" syncMode="ON_PREMISE" />
         <action type="action-link" id="onActionCloudSyncRequest" icon="document-request-sync" label="menu.selected-items.cloudRequestSync" hasAspect="sync:syncSetMemberNode" syncMode="ON_PREMISE" />
    </multi-select>
    
</config>

raihax
Champ in-the-making
Champ in-the-making
Solved,

Thank you very much Hardik1512.