0
I have a simple, public form that I created for a staff to register information. No authentication.
Currently my Realtime database has the rules in Default:
{
"rules": {
".read": false,
".write": false
}
}
How do I write a rule that only my form reads and writes in this data collection? Thus, data can be manipulated publicly by having access to authentication information.
Thank you.