<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Disable Share UI pages view for a custom role or group in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/disable-share-ui-pages-view-for-a-custom-role-or-group/m-p/299887#M253017</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi Angel,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for you response.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had a look into the source code, and this approach seems interesting.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Although, it seems to me like this method can only be used during authentication, is that right? I'd still like to apply that filter pretty much every time a user opens a page (so `WebFilter` might be a good approach, but not with the `AuthenticationUtil` method).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Or am I missing something?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just realized that class is actually implemented through WebFilter, which is triggered for every "/page" web request). Could be a good solution actually. I'll have it a go.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I might update this post with the outcome, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Sep 2015 02:29:00 GMT</pubDate>
    <dc:creator>alch3mi5t</dc:creator>
    <dc:date>2015-09-04T02:29:00Z</dc:date>
    <item>
      <title>Disable Share UI pages view for a custom role or group</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/disable-share-ui-pages-view-for-a-custom-role-or-group/m-p/299885#M253015</link>
      <description>Hey guys,I've tried to have a look around in this forum, and couldn't find a hint. I'm not even sure that the permissionDefinitions.xml‍ path is the correct path anyway.So, requirements:- A custom role (or group) which if applied to a user allows to view any document by directly linking it (so basic</description>
      <pubDate>Tue, 01 Sep 2015 05:11:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/disable-share-ui-pages-view-for-a-custom-role-or-group/m-p/299885#M253015</guid>
      <dc:creator>alch3mi5t</dc:creator>
      <dc:date>2015-09-01T05:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Share UI pages view for a custom role or group</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/disable-share-ui-pages-view-for-a-custom-role-or-group/m-p/299886#M253016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How about adding a custom web filter to alfresco or share?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can include your logic using Alfresco Java API in order to get user group and requested page. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Take a look at &lt;/SPAN&gt;&lt;A href="https://github.com/keensoft/alfresco-agreement-filter/blob/master/agreement-filter-share/src/main/java/es/keensoft/share/filter/AgreementFilter.java" rel="nofollow noopener noreferrer"&gt;https://github.com/keensoft/alfresco-agreement-filter/blob/master/agreement-filter-share/src/main/java/es/keensoft/share/filter/AgreementFilter.java&lt;/A&gt;&lt;SPAN&gt; for reference on creating custom web filters for Alfresco.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2015 13:45:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/disable-share-ui-pages-view-for-a-custom-role-or-group/m-p/299886#M253016</guid>
      <dc:creator>angelborroy</dc:creator>
      <dc:date>2015-09-01T13:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Share UI pages view for a custom role or group</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/disable-share-ui-pages-view-for-a-custom-role-or-group/m-p/299887#M253017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi Angel,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for you response.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had a look into the source code, and this approach seems interesting.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Although, it seems to me like this method can only be used during authentication, is that right? I'd still like to apply that filter pretty much every time a user opens a page (so `WebFilter` might be a good approach, but not with the `AuthenticationUtil` method).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Or am I missing something?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just realized that class is actually implemented through WebFilter, which is triggered for every "/page" web request). Could be a good solution actually. I'll have it a go.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I might update this post with the outcome, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2015 02:29:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/disable-share-ui-pages-view-for-a-custom-role-or-group/m-p/299887#M253017</guid>
      <dc:creator>alch3mi5t</dc:creator>
      <dc:date>2015-09-04T02:29:00Z</dc:date>
    </item>
  </channel>
</rss>

