Hz.Bootlegger
Hi all,
How to set up collection and document permissions if I want,
- Every user can create read and update their own documents in that collection,
- Each user can only see their own documents in that collection,
- User that has special label like "admin" can see all documents in that collection and delete also.
TL;DR
Developers are wondering how to set up permissions for a collection:
- Regular users can create, read, and update their own documents.
- Regular users can only see their own documents.
- Admin users can see and delete all documents.
Solution: Implement role-based access control where regular users have restricted permissions and admin users have elevated permissions. Recommended threads
- Type Mismatch in AppwriteException
There is a discrepancy in the TypeScript type definitions for AppwriteException. The response property is defined as a string in the type definitions, but in pr...
- [SOLVED] OAuth With Google & Flutter
Hi all, I'm trying to sign in with google and it all goes swimmingly until the call back. I get a new user created on the appwrite dashboard however the flutte...
- What Query's are valid for GetDocument?
Documentation shows that Queries are valid here, but doesn't explain which queries are valid. At first I presumed this to be a bug, but before creating a githu...