Skip to content
Snippets Groups Projects
Commit 8b408385 authored by Delphine's avatar Delphine
Browse files

[TECH] Fix user app not loading groups

parent 3046ca72
No related branches found
No related tags found
1 merge request!1Feature/design/1
......@@ -76,6 +76,7 @@ import lombok.Setter;
public class GroupExternalService extends AbstractResourceClientService<GroupDto, GroupDto> {
private static final String IDENTIFIER_KEY = "identifier";
private static final String ID_KEY = "id";
private static final String NAME_KEY = "name";
private static final String ENABLED_KEY = "enabled";
private static final String DESCRIPTION_KEY = "description";
......@@ -133,7 +134,7 @@ public class GroupExternalService extends AbstractResourceClientService<GroupDto
@Override
public Collection<String> getAllowedKeys() {
return Arrays.asList(IDENTIFIER_KEY, NAME_KEY, ENABLED_KEY, DESCRIPTION_KEY, LEVEL_KEY, CUSTOMER_ID_KEY);
return Arrays.asList(ID_KEY, IDENTIFIER_KEY, NAME_KEY, ENABLED_KEY, DESCRIPTION_KEY, LEVEL_KEY, CUSTOMER_ID_KEY);
}
@Override
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment