Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kenmhaggerty/1c6395d2478cd12c6667086768aea918 to your computer and use it in GitHub Desktop.
Save kenmhaggerty/1c6395d2478cd12c6667086768aea918 to your computer and use it in GitHub Desktop.
{
"rules" : {
"$user_id" : {
".read" : "auth.uid == $user_id", // can read if $user_id matches current user
".write" : "auth.uid == $user_id", // can read if $user_id matches current user
".validate" : "newData.val().isString()" // new data must be string
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment