gamebrary/config/firebase/firestore.rules
2018-12-19 09:31:04 -07:00

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;
}
}
}