From 1e63fa6a1561035fb1201c967963230fba6e307f Mon Sep 17 00:00:00 2001 From: Martin Felber Date: Thu, 28 Nov 2024 16:33:25 +0100 Subject: [PATCH] Fixed naming --- .../de/tum/cit/aet/artemis/communication/domain/Reaction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/tum/cit/aet/artemis/communication/domain/Reaction.java b/src/main/java/de/tum/cit/aet/artemis/communication/domain/Reaction.java index 1008070b5d0c..0fe54aa28e5b 100644 --- a/src/main/java/de/tum/cit/aet/artemis/communication/domain/Reaction.java +++ b/src/main/java/de/tum/cit/aet/artemis/communication/domain/Reaction.java @@ -33,7 +33,7 @@ public class Reaction extends DomainObject { @ManyToOne // Avoid to leak too much information, only the name + image (for display) and the id (for comparison) is needed) - @JsonIncludeProperties({ "id", "name", "image_url" }) + @JsonIncludeProperties({ "id", "name", "imageUrl" }) private User user; @CreatedDate