mirror of
https://github.com/romancm/gamebrary
synced 2024-11-10 13:44:16 +00:00
9 lines
No EOL
221 B
Text
Executable file
9 lines
No EOL
221 B
Text
Executable file
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
match /{document=**} {
|
|
allow read;
|
|
allow write: if request.auth.uid != null;
|
|
allow delete: if request.auth.uid != null;
|
|
}
|
|
}
|
|
} |