fix: allow writing logs to firebase DB

This commit is contained in:
Ondřej Synáček 2020-12-12 14:04:04 +01:00
parent c4cbc3ca4c
commit c693b20bc4
1 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,8 @@
{
"rules": {
".read": "auth != null",
".write": "auth != null"
"$log": {
".read": "true",
".write": "true"
}
}
}
}