Created
August 2, 2019 19:35
-
-
Save az67128/e839148f4e4abbd20f48c70e4098e886 to your computer and use it in GitHub Desktop.
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 /user/{userId}/{document=**} { | |
allow create, read, update, delete: if request.auth.uid == userId; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment