@edgedev/firebase 2.1.38 → 2.1.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/firestore.rules +8 -0
package/package.json
CHANGED
package/src/firestore.rules
CHANGED
|
@@ -31,6 +31,14 @@ service cloud.firestore {
|
|
|
31
31
|
allow update: if false;
|
|
32
32
|
allow delete: if false;
|
|
33
33
|
}
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
match /databases/{database}/documents/system/{event} {
|
|
37
|
+
allow read: if false;
|
|
38
|
+
allow create: if false;
|
|
39
|
+
allow update: if false;
|
|
40
|
+
allow delete: if false;
|
|
41
|
+
}
|
|
34
42
|
|
|
35
43
|
match /databases/{database}/documents/rule-helpers/{helper} {
|
|
36
44
|
allow read: if false;
|