From 9d7a9d4aaf87293bfc901ee3be9abe6609469914 Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Mon, 7 Dec 2020 16:16:43 +0530 Subject: [PATCH] Modifying the text for the roles in the share modal (#2045) --- .../src/main/java/com/appsmith/server/acl/AppsmithRole.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/acl/AppsmithRole.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/acl/AppsmithRole.java index 61059a685c..079ff36799 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/acl/AppsmithRole.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/acl/AppsmithRole.java @@ -19,11 +19,11 @@ import static com.appsmith.server.acl.AclPermission.READ_ORGANIZATIONS; public enum AppsmithRole { APPLICATION_ADMIN("Application Administrator", "", Set.of(MANAGE_APPLICATIONS)), APPLICATION_VIEWER("Application Viewer", "", Set.of(READ_APPLICATIONS)), - ORGANIZATION_ADMIN("Administrator", "Can edit, view applications and invite other user to organization", + ORGANIZATION_ADMIN("Administrator", "Can modify all organization settings including editing applications and inviting other users to the organization", Set.of(MANAGE_ORGANIZATIONS, ORGANIZATION_INVITE_USERS)), - ORGANIZATION_DEVELOPER("Developer", "Can edit and view applications", Set.of(READ_ORGANIZATIONS, + ORGANIZATION_DEVELOPER("Developer", "Can edit and view applications along with inviting other users to the organization", Set.of(READ_ORGANIZATIONS, ORGANIZATION_MANAGE_APPLICATIONS, ORGANIZATION_READ_APPLICATIONS, ORGANIZATION_PUBLISH_APPLICATIONS, ORGANIZATION_INVITE_USERS)), - ORGANIZATION_VIEWER("App Viewer", "Can view applications", Set.of(READ_ORGANIZATIONS, ORGANIZATION_READ_APPLICATIONS)); + ORGANIZATION_VIEWER("App Viewer", "Can only view applications", Set.of(READ_ORGANIZATIONS, ORGANIZATION_READ_APPLICATIONS)); private Set permissions; private String name;