From 9c098fad24b7f00d8fb61cd14ebebe0dc46828c6 Mon Sep 17 00:00:00 2001 From: Andrei Forascu Date: Wed, 27 Feb 2019 12:31:59 +0200 Subject: [PATCH] REPO-3630/MNT-19696: REST API add order by parameter option to GET favorites (#354) * REPO-3630: - add title to the PersonFavouriteKey constructor * [maven-release-plugin] prepare release alfresco-repository-repo-3630-1 * [maven-release-plugin] prepare for next development iteration --- .../java/org/alfresco/repo/favourites/PersonFavourite.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/alfresco/repo/favourites/PersonFavourite.java b/src/main/java/org/alfresco/repo/favourites/PersonFavourite.java index 60e1497b75..6e0e53664f 100644 --- a/src/main/java/org/alfresco/repo/favourites/PersonFavourite.java +++ b/src/main/java/org/alfresco/repo/favourites/PersonFavourite.java @@ -66,7 +66,8 @@ public class PersonFavourite this.userName = userName; this.type = type; this.nodeRef = nodeRef; - this.createdAt = createdAt; + this.createdAt = createdAt; + this.title = title; } public String getTitle()