mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
Merged 5.2.N (5.2.1) to HEAD (5.2)
130783 jvonka: REPO-1058: REST API - list sites that person is member of ... - fix orderBy tests and backward compatibility - REPO-1242, / REPO-1244 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@132179 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -130,8 +130,11 @@ public class SitesImpl implements Sites
|
||||
{
|
||||
Map<String,SiteService.SortFields> aMap = new HashMap<>(3);
|
||||
aMap.put(PARAM_SITE_TITLE, SiteService.SortFields.SiteTitle);
|
||||
aMap.put(SiteService.SortFields.SiteTitle.toString(), SiteService.SortFields.SiteTitle); // for backwards compat'
|
||||
aMap.put(PARAM_SITE_ID, SiteService.SortFields.SiteShortName);
|
||||
aMap.put(SiteService.SortFields.SiteShortName.toString(), SiteService.SortFields.SiteShortName); // for backwards compat'
|
||||
aMap.put(PARAM_SITE_ROLE, SiteService.SortFields.Role);
|
||||
aMap.put(SiteService.SortFields.Role.toString(), SiteService.SortFields.Role); // for backwards compat'
|
||||
SORT_SITE_MEMBERSHIP = Collections.unmodifiableMap(aMap);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user