mirror of
https://github.com/ClaytonWWilson/CS307-Team24.git
synced 2025-12-13 01:18:46 +00:00
8 lines
152 B
Plaintext
8 lines
152 B
Plaintext
rules_version = '2';
|
|
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
match /{document=**} {
|
|
allow read, write;
|
|
}
|
|
}
|
|
} |