A question to Tyler or anyone that would like to answer:
I'm fetching the users data from the DB (collection users, as that's what derby-auth is set to use), and I'm bumping into readPathAccess.
The thing is that I would need some information on all the relevant users (for example if I make a "join" with a comments collection - or if I'm looking at some user's profile page and need that info). That is, I would need some read access to that user's data, even if it's not me. I could want the data from all the users.
That brings some problems, as some of the data probably isn't public.
Am I right? How do we tackle this problem? (Did I explain this well enough?)
One suggestion could be:
Create two paths:
- users.*.private
- users.*.public
... and use readPathAccess only on the private path.
Any other solutions? Is this even a problem?
Thanks.