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
- TOO_MANY_REDIRECTS after temporarily ena...
I am losing my mind over this, I enabled this setting because I was having issues with sites not making links with https. I enabled it, ran into issues, so I di...
- Unable to create Sites or Functions with...
Heya, I was looking at the appwrite documentation for Sites API with the server api: https://appwrite.io/docs/references/cloud/server-nodejs/sites I can’t fin...
- 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" :...