mirror of
https://github.com/xavidop/cardex.git
synced 2026-08-29 01:08:52 +00:00
11 lines
241 B
Plaintext
11 lines
241 B
Plaintext
rules_version = '2';
|
|
|
|
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
// Temporarily allow all authenticated users to test auth
|
|
match /{document=**} {
|
|
allow read, write: if request.auth != null;
|
|
}
|
|
}
|
|
}
|