diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Group.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Group.java index e099e7202c..41abd60d19 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Group.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Group.java @@ -30,6 +30,8 @@ public class Group extends BaseDomain { */ Set permissions; + private Boolean isDefault = false; + /** * If the display name is null or empty, then just return the actual group name. This is just to ensure that * the client is never sent an empty group name for displaying on the UI. diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/services/GroupServiceImpl.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/services/GroupServiceImpl.java index 9e3b5211f7..f133972027 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/services/GroupServiceImpl.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/services/GroupServiceImpl.java @@ -55,6 +55,7 @@ public class GroupServiceImpl extends BaseService