-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 8.10-HF09, 9.2
-
Component/s: Directory, User Profile / User Manager
-
Release Notes Summary:Group description is correctly retrieved through REST
-
Backlog priority:550
-
Sprint:nxsupport 9.3.2
-
Story Points:3
Below HF09
- install an LDAP server with at least 1 group with a description
- install Nuxeo 8.10 HF08
- configure Nuxeo to connect to the LDAP
- connect as Administrator
- search users with * as filter
- head over to the groups tab
- search groups with * as filter
- check the groups and observe the description appears in the result list
- go into one group entry, the description is missing
- access it through REST using a command similar to:
curl -u Administrator:Administrator http://localhost:8080/nuxeo/api/v1/group/firstgroup | json_pp
{ "groupname" : "firstgroup", "grouplabel" : "my description label", "entity-type" : "group" }
In the LDAP logs, the attributes returned are:
memberURL senateLabel tenantid objectClass member description cn
With HF09
- install an LDAP server with at least 1 group with a description
- install Nuxeo 8.10 HF09
- configure Nuxeo to connect to the LDAP
- connect as Administrator
- check the groups and observe the description appears
- access it through REST using a command similar to:
curl -u Administrator:Administrator http://localhost:8080/nuxeo/api/v1/group/firstgroup | json_pp
{ "groupname" : "firstgroup", "grouplabel" : "firstgroup", "entity-type" : "group" }
The label (description) is not retrieved.
- In the LDAP logs, the attributes returned are:
cn memberURL
This may be due to the following fix in HF09 (NXP-20066) but this does not explain why the description is displayed in the JSF UI.
Also the fix version may be extended if it is confirmed to be a regression to 6.0 and 7.10.
- is related to
-
NXP-20066 Fix references resolution for Dynamic LDAP References
- Resolved