<?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: Configuring separate permissions for adding aspects and editing properties in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282830#M235960</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am on same path, I do have one aspect on folder and after applying aspect I can see new action added to folder. I want to show my aspect in list only if user have specific role. So the user having that specific role can only see my aspect and apply it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyone achieved it ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Jan 2015 06:14:00 GMT</pubDate>
    <dc:creator>g_rathod</dc:creator>
    <dc:date>2015-01-30T06:14:00Z</dc:date>
    <item>
      <title>Configuring separate permissions for adding aspects and editing properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282827#M235957</link>
      <description>Is there a way to apply/configure separate permissions for adding aspect and editing properties on a document? Right now we have a permission '_WriteProperties' which as per the documentation is "The permission to write to the properties of a node. This permission includes adding aspects to a node a</description>
      <pubDate>Tue, 30 Dec 2014 05:41:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282827#M235957</guid>
      <dc:creator>sunnysharma</dc:creator>
      <dc:date>2014-12-30T05:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring separate permissions for adding aspects and editing properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282828#M235958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BR /&gt;&lt;SPAN&gt;You can create a action evaluator which will identify current users group. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then apply this evaluator to add aspect action. By doing this your add aspect action will be only visible to the usergroup which you want.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Dec 2014 09:06:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282828#M235958</guid>
      <dc:creator>mitpatoliya</dc:creator>
      <dc:date>2014-12-30T09:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring separate permissions for adding aspects and editing properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282829#M235959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Mits,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your reply. First, I don't want to create a new action. I want this for existing action which is 'Manage Aspects'. And secondly, I don't want this for group but this should be based on role or permission. Now we have evaluator for groups but I don't think there is any evaluator for role and permission. If there is any way to create evaluator based on role or permission please let me know, I have tried this but to no avail.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another thing is we can add permission directly to the action. For manage aspect action we have following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!– Manage aspects –&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;action id="document-manage-aspects" type="javascript" label="actions.document.manage-aspects"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;param name="function"&amp;gt;onActionManageAspects&amp;lt;/param&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;permissions&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;permission allow="true"&amp;gt;Write&amp;lt;/permission&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/permissions&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;evaluator negate="true"&amp;gt;evaluator.doclib.action.isLocked&amp;lt;/evaluator&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/action&amp;gt;&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now here if I try to change the permission, it doesn't seem to work, which is really strange. e.g. If I change the permission to 'AddChildren', it implies that person/group with 'Editor' role should not see the action but a person with 'Contributor' role (and admin) can see this action. But strangely no one, even admin, is not able to see this action after this change. Am I missing something here while defining permission for action?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2015 03:59:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282829#M235959</guid>
      <dc:creator>sunnysharma</dc:creator>
      <dc:date>2015-01-02T03:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring separate permissions for adding aspects and editing properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282830#M235960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am on same path, I do have one aspect on folder and after applying aspect I can see new action added to folder. I want to show my aspect in list only if user have specific role. So the user having that specific role can only see my aspect and apply it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyone achieved it ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 06:14:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282830#M235960</guid>
      <dc:creator>g_rathod</dc:creator>
      <dc:date>2015-01-30T06:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring separate permissions for adding aspects and editing properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282831#M235961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have the same issue ,&amp;nbsp; did you find the solution ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2016 07:23:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/configuring-separate-permissions-for-adding-aspects-and-editing/m-p/282831#M235961</guid>
      <dc:creator>mahmoud</dc:creator>
      <dc:date>2016-12-11T07:23:56Z</dc:date>
    </item>
  </channel>
</rss>

