I cannot find an answer to this in the documentation. The default Firebase rules are:
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
I have edited mine to look like this and saved them:
{
"rules": {
"users":{
".read": true,
".write": "auth != null"
},
".read": "auth != null",
".write": "auth != null"
}
}
Without me doing anything, they randomly reset to the old rules after what seems like 12 hours. Am I missing some kind of persist option here?