Skip to content

Instantly share code, notes, and snippets.

@erinpagemd
Created February 12, 2015 20:04
Show Gist options
  • Save erinpagemd/f997b877774594dcba4c to your computer and use it in GitHub Desktop.
Save erinpagemd/f997b877774594dcba4c to your computer and use it in GitHub Desktop.
Firebase Security Rules
{
"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