diff --git a/bubble-server/src/main/java/bubble/model/app/BubbleApp.java b/bubble-server/src/main/java/bubble/model/app/BubbleApp.java index 542b2250..05c1ad51 100644 --- a/bubble-server/src/main/java/bubble/model/app/BubbleApp.java +++ b/bubble-server/src/main/java/bubble/model/app/BubbleApp.java @@ -120,7 +120,7 @@ public class BubbleApp extends IdentifiableBaseParentEntity implements AccountTe @Getter @Setter private String templateApp; public boolean hasTemplateApp() { return !empty(templateApp); } - public String getTemplateAppOrSelf() { + @JsonIgnore @Transient public String getTemplateAppOrSelf() { return hasTemplateApp() ? templateApp : template() ? getUuid() : null; }