Is it possible to subscribe from a
Is it possible to subscribe from a webpage to a single record without being able to access anything else?
3 Replies
yes, just add a property field user_ids and assign the user ids that can acccess the documents.
user_ids: [1,2,3]
then just check the user logged in with the array field.
Row Level Security
Add row-level security to your database access by wrapping database reads and writes in your Convex serverless functions.
Thank you kindly