mirror of
https://github.com/romancm/gamebrary
synced 2024-11-28 06:00:22 +00:00
12 lines
No EOL
262 B
Text
Executable file
12 lines
No EOL
262 B
Text
Executable file
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
match /lists/{userId} {
|
|
allow read;
|
|
}
|
|
|
|
match /{document=**} {
|
|
allow read, write: if request.auth.uid != null;
|
|
allow delete: if request.auth.uid != null;
|
|
}
|
|
}
|
|
} |