Hide 'Start Workflow' action in Share (5.1)

cancel
Showing results for 
Search instead for 
Did you mean: 
805654685
Member II

Hide 'Start Workflow' action in Share (5.1)

4 Replies
jayesh_prajapat
Established Member

Re: Hide 'Start Workflow' action in Share (5.1)

Not sure what you are looking for. Assuming you want to know way to hide action in Share. If that is the case, please see this link, Override and extension examples | Alfresco Documentation 

805654685
Member II

Re: Hide 'Start Workflow' action in Share (5.1)

IF someone only have the read-only permission for files in a folder,then how to close the function of “Start Workflow” under this folder in repositories of Alfresco

jayesh_prajapat
Established Member

Re: Hide 'Start Workflow' action in Share (5.1)

Hi 

You can try following,

<action id="document-assign-workflow" type="javascript" label="actions.document.assign-workflow">
          <param name="function">onActionAssignWorkflow</param>
        <permissions>
           <permission allow="true">Write</permission>
            <permission allow="true">Delete</permission>

        </permissions>
      </action>

Hope this will be helpful.

-

Jayesh Prajapati
www.enprowess.com

805654685
Member II

Re: Hide 'Start Workflow' action in Share (5.1)

Thank you so much. This method is effective