Created
February 12, 2015 20:04
-
-
Save erinpagemd/f997b877774594dcba4c to your computer and use it in GitHub Desktop.
Firebase Security Rules
This file contains 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": { | |
"$uid": { | |
".write": "auth !== null && auth.uid === $uid", | |
".read": "auth !== null && auth.uid === $uid" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment