cancel
Showing results for 
Search instead for 
Did you mean: 

Adding/Changing collaboration network group names?

karl_harris_
Star Collaborator
Star Collaborator

Can I change and/or add to the network group name list in the Nuxeo Collaboration Module?

Is it in a vocabulary list?

I looked at the vocabulary list but could not find anything.

Thanks,

Karl

1 ACCEPTED ANSWER

Thomas_Roger
Star Contributor
Star Contributor

The network groups are contributed to the RelationshipService. Here is the default contribution:

<extension target="org.nuxeo.ecm.social.relationship.service.RelationshipService"
    point="relationshipKinds">
     <kind group="circle" name="friends" />
     <kind group="circle" name="coworkers" />
</extension>

You need to use the group "circle" so that your newly contributed groups will be displayed in the pop-up when adding a new relation.

If you want to add a new one, and disable the "friends" group, you can do the following:

<require>org.nuxeo.ecm.social.user.relationship.contrib</require>

<extension target="org.nuxeo.ecm.social.relationship.service.RelationshipService"
    point="relationshipKinds">
     <kind group="circle" name="friends" enabled="false" />
     <kind group="circle" name="my new group" />
</extension>

Don't forget the require element so that the "friends" group will be overridden.

View answer in original post

2 REPLIES 2

Thomas_Roger
Star Contributor
Star Contributor

The network groups are contributed to the RelationshipService. Here is the default contribution:

<extension target="org.nuxeo.ecm.social.relationship.service.RelationshipService"
    point="relationshipKinds">
     <kind group="circle" name="friends" />
     <kind group="circle" name="coworkers" />
</extension>

You need to use the group "circle" so that your newly contributed groups will be displayed in the pop-up when adding a new relation.

If you want to add a new one, and disable the "friends" group, you can do the following:

<require>org.nuxeo.ecm.social.user.relationship.contrib</require>

<extension target="org.nuxeo.ecm.social.relationship.service.RelationshipService"
    point="relationshipKinds">
     <kind group="circle" name="friends" enabled="false" />
     <kind group="circle" name="my new group" />
</extension>

Don't forget the require element so that the "friends" group will be overridden.

Thank you that answers my original question.

Getting started

Find what you came for

We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.