Using firestore with angularfire2 rc 2.
All is working very nicely in development with no effective security rules.
These are the no security rules - where the cli
I resolved this issue like this.
service cloud.firestore { match /databases/{database}/documents { match /users/{userId} { match /{allSubcollections=**} { allow read, write: if request.auth.uid == userId; } } } }