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
- Realtime for files() works almost well, ...
I have been trying to make use of realtime, today (14.03.26) I have pulled all the latest versions of docker images, and sdk available. Whats working: - Conn...
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...