mirror of
https://github.com/hubHarmony/servii-frontend.git
synced 2024-11-17 21:40:30 +00:00
9 lines
201 B
Plaintext
9 lines
201 B
Plaintext
rules_version = '2';
|
|
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
match /users/{userId} {
|
|
allow read: if request.auth!= null && request.auth.uid == userId;
|
|
}
|
|
}
|
|
}
|