mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-21 22:50:51 +00:00
14 lines
547 B
Plaintext
14 lines
547 B
Plaintext
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
// Make sure the uid of the requesting user matches name of the user
|
|
// document. The wildcard expression {userId} makes the userId variable
|
|
// available in rules.
|
|
match /users/{userId} {
|
|
allow read, write, create, update, delete: if request.auth.uid != null && request.auth.uid == userId;
|
|
}
|
|
match /users/{userId}/{document=**} {
|
|
allow read, write, create, update, delete: if request.auth.uid != null && request.auth.uid == userId;
|
|
}
|
|
}
|
|
}
|