Hello how would you handle a row level security?
For example I have a projects table that has a ownerId and a second table called members that stores a user/project id How would you make it so only members could update the project?
I'm making a time tracking app so i store the following items:
Projects:
- title
- ownerId TimeEntries:
- start/end datetime
- projectId
- userId
I would like so only members could insert a time entry for a certain project
in my old backend code (expressJS) I just made sure that the user was inside of the members table
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...