We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67e9f25 commit cd5db38Copy full SHA for cd5db38
config/firestore.rules
@@ -1,7 +1,7 @@
1
service cloud.firestore {
2
match /databases/{database}/documents {
3
match /{document=**} {
4
- allow read, write;
+ allow read;
5
}
6
7
config/functions/index.js
@@ -19,8 +19,6 @@ const assert = require('assert');
19
const cors = require('cors')({ origin: true });
20
const functions = require('firebase-functions');
21
22
-// FIXME: trigger functions deploy
23
-
24
/*
25
* These backend test helpers are copied from the iOS and Android SDKs, but are
26
* not all implemented as tests in the JS SDK yet.
0 commit comments