Skip to content

Commit cd5db38

Browse files
committed
Test firestore rule change
1 parent 67e9f25 commit cd5db38

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

config/firestore.rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
service cloud.firestore {
22
match /databases/{database}/documents {
33
match /{document=**} {
4-
allow read, write;
4+
allow read;
55
}
66
}
77
}

config/functions/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ const assert = require('assert');
1919
const cors = require('cors')({ origin: true });
2020
const functions = require('firebase-functions');
2121

22-
// FIXME: trigger functions deploy
23-
2422
/*
2523
* These backend test helpers are copied from the iOS and Android SDKs, but are
2624
* not all implemented as tests in the JS SDK yet.

0 commit comments

Comments
 (0)