From c693b20bc4e0373d45e4d33e9648ef6b451defa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Sat, 12 Dec 2020 14:04:04 +0100 Subject: [PATCH] fix: allow writing logs to firebase DB --- database.rules.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/database.rules.json b/database.rules.json index c0aa595..399a818 100644 --- a/database.rules.json +++ b/database.rules.json @@ -1,6 +1,8 @@ { "rules": { - ".read": "auth != null", - ".write": "auth != null" + "$log": { + ".read": "true", + ".write": "true" + } } -} \ No newline at end of file +}