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 33a45be commit 03ff562Copy full SHA for 03ff562
config/firestore.rules
@@ -1,7 +1,7 @@
1
service cloud.firestore {
2
match /databases/{database}/documents {
3
match /{document=**} {
4
- allow read;
+ allow read, write;
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: test
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