diff --git a/app/server/appsmith-server/src/main/resources/public/appsmith/authz/acl.rego b/app/server/appsmith-server/src/main/resources/public/appsmith/authz/acl.rego index 95bf3a158e..9f0b68f4ea 100644 --- a/app/server/appsmith-server/src/main/resources/public/appsmith/authz/acl.rego +++ b/app/server/appsmith-server/src/main/resources/public/appsmith/authz/acl.rego @@ -62,6 +62,9 @@ allowed_operations = [ {"method": "POST", "resource": "collections", "permission": "create:collections"}, {"method": "PUT", "resource": "collections", "permission": "update:collections"}, + {"method": "GET", "resource": "datasources", "permission": "read:datasources"}, + {"method": "POST", "resource": "datasources", "permission": "create:datasources"}, + {"method": "PUT", "resource": "datasources", "permission": "update:datasources"} ] diff --git a/app/server/appsmith-server/src/main/resources/public/bundle.tar.gz b/app/server/appsmith-server/src/main/resources/public/bundle.tar.gz index 5f99103aee..cd6a677f70 100644 Binary files a/app/server/appsmith-server/src/main/resources/public/bundle.tar.gz and b/app/server/appsmith-server/src/main/resources/public/bundle.tar.gz differ