Spaces:
Running
Running
File size: 390 Bytes
4d5c005 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// User profiles
match /users/{userId} {
allow read: if request.auth != null && request.auth.uid == userId;
allow write: if request.auth != null && request.auth.uid == userId;
}
// Default deny
match /{document=**} {
allow read, write: if false;
}
}
} |