I want to isolate each user's data from all other users. What is the best way to keep a user viewing and modifying only her stuff? My approach has been to
autoValue: function(d) { return this.userId }
on the userId field for each schema to force the userId during validation.Is this a good and correct approach? What is best practice?
@dk. this sounds like a good approach to me and is considered best practice as well (as of my experience with meteor).