Share Link on Alfresco's documents

cancel
Showing results for 
Search instead for 
Did you mean: 
spawn
Active Member

Share Link on Alfresco's documents

Jump to solution

Is it possible to hide the share link on Alfresco's documents? Or is there an option to set/add a one-time password to the link or document?

Thanks again!

1 Solution

Accepted Solutions
afaust
Master

Re: Share Link on Alfresco's documents

Jump to solution

You can disable the quickshare functionality on the Repository tier by setting system.quickshare.enabled=false in alfresco-global.properties. If you override the social action configuration section in share-config-custom.xml you should be able to completely hide the quickshare + linkshare actions.

   <config evaluator="string-compare" condition="Social" replace="true">
      <!-- Alfresco QuickShare social widget - for creating public url that can be shared -->
      <quickshare></quickshare>

      <!-- Alfresco LinkShare social widget - share a link to social sites -->
      <linkshare></linkshare>

   </config>

View solution in original post

1 Reply
afaust
Master

Re: Share Link on Alfresco's documents

Jump to solution

You can disable the quickshare functionality on the Repository tier by setting system.quickshare.enabled=false in alfresco-global.properties. If you override the social action configuration section in share-config-custom.xml you should be able to completely hide the quickshare + linkshare actions.

   <config evaluator="string-compare" condition="Social" replace="true">
      <!-- Alfresco QuickShare social widget - for creating public url that can be shared -->
      <quickshare></quickshare>

      <!-- Alfresco LinkShare social widget - share a link to social sites -->
      <linkshare></linkshare>

   </config>