How can I grant permission for a user to add data to a table in a way that only that user can delete/edit/view the data they added?
You would need to grant users create permissions on a collection and then turn on document level security on on the collection. When the user creates a document on the collection, it will default to grant them read, update, and delete access on the document
thanks. I thought it would grant permissions to all users to operate, not just the user who created it.
It should be only create for users
Recommended threads
- listRows result parsing issue
I'm using Appwrite Dart SDK "24.2.0". When I perform a listRows call in dart, I have this reponse in JSON: in " Future<models.RowList> listRows()" { "total" :...
- Index for combination of columns
How am i suppposed to apply index so that combination of two columns alwasy remain unique in appwrite table though console
- Broken Flutter SDK >=24.1.0
Row.fromMap now does: ``` data: Map<String, dynamic>.from(map["data"] ?? {}) ``` But Appwrite Cloud TablesDB row responses return custom row columns flattene...