my user database contains all users with data like username, rating, description, email.
I want to access all user but, want to set email to be unreadable. Is it possible to set just one property to not be readable?
this is my rule:
"users": {
".indexOn": ["username","id"],
".write": false,
".read": true, //removed
"$user_id":{
"email": {
".read": false,
},
}
},