Created
July 20, 2018 06:43
-
-
Save unyo/970ce6e5ab8daed6d40d8571c5c76cb8 to your computer and use it in GitHub Desktop.
Default firebase 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 /{document=**} { | |
allow read, write; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment