Files
booster/firebase/database.rules.json
Zhigang Fang 23629c4a7d feat: integrate basic chat (#9)
* fix: test

* chore: wip add chat

* chore: add basic chat

* chore: update lock files

* chore: add android signing

* chore: only sign release build

* chore: fix react-native-progress-display

* fix: only support 21 and up

* chore: update fix on react-native-progress-display

* chore: add database

* fix: build

* chore: attemp on fix google sign in

* fix: google login

* chore: add appcenter

* feat: switch to appcenter

* fix: typo

* chore: add group
2019-07-01 10:02:07 +08:00

23 lines
397 B
JSON

{
"rules": {
"userStatus": {
"$uid": {
".write": "$uid === auth.uid",
".read": true
}
},
"conversationCounts": {
"$uid": {
".write": "$uid === auth.uid",
".read": "$uid === auth.uid"
}
},
"myUnreadCount": {
"$uid": {
".write": "$uid === auth.uid",
".read": "$uid === auth.uid"
}
}
}
}