Skip to content

Instantly share code, notes, and snippets.

View heloa-net's full-sized avatar

heloa-net

View GitHub Profile
@heloa-net
heloa-net / firebaseDBRules.json
Last active December 11, 2016 22:47
Firebase database rules for allowing public read access and write access to authenticated users only on personal node
{
"rules": {
".read": true,
"users": {
"$uid": {
".write": "$uid === auth.uid"
}
}
}
}