Last active
January 3, 2017 13:49
-
-
Save bezysoftware/08c6253e82d93c238ae1f467755eb3c2 to your computer and use it in GitHub Desktop.
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
| { | |
| "rules": { | |
| "users": { | |
| "$user": { | |
| ".read": "auth.uid === $user", | |
| ".write": "auth.uid === $user" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment