From dd387430308da5ede0705eb419d4ee0f839893c8 Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Kandula Date: Mon, 3 Jun 2024 13:15:45 +0530 Subject: [PATCH] chore: Remove `unreadCommentThreads` (#33905) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not removing this field from Cypress test resources, so that we continue to test with past export files. /test all > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: > Commit: b97cece10c2e20d9552ac0942badd9d9a9e47850 > Cypress dashboard url: Click here! --- app/client/src/ce/api/ApplicationApi.tsx | 1 - .../main/java/com/appsmith/server/domains/Application.java | 4 ---- 2 files changed, 5 deletions(-) diff --git a/app/client/src/ce/api/ApplicationApi.tsx b/app/client/src/ce/api/ApplicationApi.tsx index 2ffa8cc883..dec3fcd7a5 100644 --- a/app/client/src/ce/api/ApplicationApi.tsx +++ b/app/client/src/ce/api/ApplicationApi.tsx @@ -204,7 +204,6 @@ export interface UpdateApplicationResponse { isPublic: boolean; pages: PageDefaultMeta[]; appIsExample: boolean; - unreadCommentThreads: number; color: string; icon: IconNames; slug: string; diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java index 3b88521ed6..db9405334e 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java @@ -65,10 +65,6 @@ public class Application extends BaseDomain implements Artifact { @JsonView({Views.Public.class, Git.class}) boolean appIsExample = false; - @Transient - @JsonView(Views.Public.class) - long unreadCommentThreads; - @JsonView(Views.Internal.class) String clonedFromApplicationId;