<?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: How to show group created by me only in search? in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-show-group-created-by-me-only-in-search/m-p/319836#M6837</link>
    <description>&lt;P&gt;There's no record of &lt;EM&gt;who&lt;/EM&gt; created a group. Indeed in some cases they come from an external system (LDAP, Active Directory). So what you're suggesting is not possible.&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jul 2017 11:49:53 GMT</pubDate>
    <dc:creator>Florent_Guillau</dc:creator>
    <dc:date>2017-07-20T11:49:53Z</dc:date>
    <item>
      <title>How to show group created by me only in search?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-show-group-created-by-me-only-in-search/m-p/319835#M6836</link>
      <description>&lt;P&gt;Hi,
I want to show group created by me only in search suggestion while adding permission on work space.
How can I do this?
plz find attachment of image where I want to suggestion of those group which created by me only.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2017 14:29:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-show-group-created-by-me-only-in-search/m-p/319835#M6836</guid>
      <dc:creator>Santosh_Yadav</dc:creator>
      <dc:date>2017-07-04T14:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to show group created by me only in search?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-show-group-created-by-me-only-in-search/m-p/319836#M6837</link>
      <description>&lt;P&gt;There's no record of &lt;EM&gt;who&lt;/EM&gt; created a group. Indeed in some cases they come from an external system (LDAP, Active Directory). So what you're suggesting is not possible.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2017 11:49:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-show-group-created-by-me-only-in-search/m-p/319836#M6837</guid>
      <dc:creator>Florent_Guillau</dc:creator>
      <dc:date>2017-07-20T11:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to show group created by me only in search?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-show-group-created-by-me-only-in-search/m-p/319837#M6838</link>
      <description>&lt;P&gt;I have only postgres for groupdirectory not LDAP/Active Drectory&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2017 12:39:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-show-group-created-by-me-only-in-search/m-p/319837#M6838</guid>
      <dc:creator>Santosh_Yadav</dc:creator>
      <dc:date>2017-09-28T12:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to show group created by me only in search?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-show-group-created-by-me-only-in-search/m-p/319838#M6839</link>
      <description>&lt;P&gt;Hi,
I solved this by making some changes as follows:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;created own bundle to override some actions &amp;amp; services of nuxeo.&lt;/LI&gt;
&lt;LI&gt;overridden &lt;STRONG&gt;group&lt;/STRONG&gt; schema to add &lt;STRONG&gt;ownerId&lt;/STRONG&gt; in that. With the help of &lt;A href="https://doc.nuxeo.com/nxdoc/how-to-add-new-fields-to-the-user-profile-or-group-profile/" target="test_blank"&gt;https://doc.nuxeo.com/nxdoc/how-to-add-new-fields-to-the-user-profile-or-group-profile/&lt;/A&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;`
&amp;lt;xs:schema targetNamespace="http://www.nuxeo.org/ecm/schemas/group"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:nxs="http://www.nuxeo.org/ecm/schemas/group"&amp;gt;
&amp;lt;xs:include schemaLocation="base.xsd" /&amp;gt;
&amp;lt;xs:element name="groupname" type="xs:string" /&amp;gt;
&amp;lt;xs:element name="grouplabel" type="xs:string" /&amp;gt;
&amp;lt;xs:element name="description" type="xs:string" /&amp;gt;&lt;/P&gt;
  &lt;!-- references --&gt;
&lt;P&gt;&amp;lt;xs:element name="members" type="nxs:stringList" /&amp;gt;
&amp;lt;xs:element name="subGroups" type="nxs:stringList" /&amp;gt;&lt;/P&gt;
  &lt;!-- inverse reference --&gt;
&lt;P&gt;&amp;lt;xs:element name="parentGroups" type="nxs:stringList" /&amp;gt;&lt;/P&gt;
  &lt;!-- multi tenant --&gt;
&lt;P&gt;&amp;lt;xs:element name="tenantId" type="xs:string" /&amp;gt;
&amp;lt;xs:element name="ownerid" type="xs:string" /&amp;gt;
&amp;lt;/xs:schema&amp;gt;`&lt;/P&gt;
&lt;OL start="3"&gt;
&lt;LI&gt;altered &lt;STRONG&gt;groups&lt;/STRONG&gt; table added new column &lt;STRONG&gt;ownerId&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;created new menu to show group by creating new action&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;CODE&gt;&amp;lt;action id="VirtualGroupsManager" link="/users/view_groups.xhtml" label="label.groupManager.groups" type="admin_rest_document_link" order="40"&amp;gt; &amp;lt;category&amp;gt;NUXEO_ADMIN&amp;lt;/category&amp;gt; &amp;lt;filter-id&amp;gt;user_manager&amp;lt;/filter-id&amp;gt; &amp;lt;filter-id&amp;gt;not_readonly&amp;lt;/filter-id&amp;gt; &amp;lt;/action&amp;gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;OL start="5"&gt;
&lt;LI&gt;overridden &lt;STRONG&gt;UserManager&lt;/STRONG&gt; service to save &lt;STRONG&gt;ownerid&lt;/STRONG&gt; while creating new group &amp;amp; to add &lt;STRONG&gt;ownerid&lt;/STRONG&gt;
filter while retrieving groups.&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Thu, 28 Sep 2017 12:59:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-show-group-created-by-me-only-in-search/m-p/319838#M6839</guid>
      <dc:creator>Santosh_Yadav</dc:creator>
      <dc:date>2017-09-28T12:59:29Z</dc:date>
    </item>
  </channel>
</rss>

