Created
December 15, 2017 01:17
-
-
Save dmcgrath/3647295dc6285a53e87d50a7f9ace6be to your computer and use it in GitHub Desktop.
Initial rules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service cloud.firestore { | |
match /databases/{database}/documents { | |
match /notes/{doc} { | |
allow list: if false; | |
allow get: if true; | |
allow create: if true; | |
allow delete: if true; | |
allow update: if true; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment