From 31c5994628f1d53652253e79fd3cc2c6424e1995 Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Wed, 1 Nov 2023 16:15:37 -0700 Subject: [PATCH] Clarify a user can't grant a permission they don't have Using own can be confusing because developers may think the user only needs to own the resource. --- src/routes/docs/advanced/platform/permissions/+page.markdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/docs/advanced/platform/permissions/+page.markdoc b/src/routes/docs/advanced/platform/permissions/+page.markdoc index 69183b7c84..962bfc9923 100644 --- a/src/routes/docs/advanced/platform/permissions/+page.markdoc +++ b/src/routes/docs/advanced/platform/permissions/+page.markdoc @@ -12,7 +12,7 @@ As the name suggests, read permission allows a user to read a resource, create a All permissions can be granted to individuals or groups of users, entire teams, or only to team members with a specific role. Permission can also be granted based on authentication status, such as to all users, only authenticated users, or only guest users. -A project user can only grant permissions to a resource that they own. For example, if a user is trying to share a document with a team that they are not a member of, they will encounter a 401 not authorized error. If your app needs users to grant access to teams they're not a member of, you can create Appwrite Functions with a [Server SDK](/docs/sdks#server) to achieve this functionality. +A project user can only grant permissions to a resource that they have. For example, if a user is trying to share a document with a team that they are not a member of, they will encounter a 401 not authorized error. If your app needs users to grant access to teams they're not a member of, you can create Appwrite Functions with a [Server SDK](/docs/sdks#server) to achieve this functionality. # Appwrite resource {% #appwrite-resource %}