mirror of
https://github.com/romancm/gamebrary
synced 2024-12-12 20:52:28 +00:00
7 lines
160 B
Text
7 lines
160 B
Text
|
service cloud.firestore {
|
||
|
match /databases/{database}/documents {
|
||
|
match /{document=**} {
|
||
|
allow read, write: if request.auth.uid != null;
|
||
|
}
|
||
|
}
|
||
|
}
|