Skip to content

Instantly share code, notes, and snippets.

@malikkurosaki
Last active September 18, 2018 05:14
Show Gist options
  • Save malikkurosaki/9ccd18db6cddeb33b6ac11e97ceaead3 to your computer and use it in GitHub Desktop.
Save malikkurosaki/9ccd18db6cddeb33b6ac11e97ceaead3 to your computer and use it in GitHub Desktop.
firebase rule
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
{
"rules": {
"users": {
"$uid": {
".read": "$uid === auth.uid",
".write": "$uid === auth.uid"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment