save current show in global store

This commit is contained in:
2020-04-22 11:56:29 +02:00
committed by smuddy
parent 5c7e588c2a
commit 90ab0a76ae
9 changed files with 73 additions and 15 deletions

View File

@@ -23,6 +23,11 @@ service cloud.firestore {
allow write: if request.auth.uid != null;
}
match /global/{global} {
allow read: if request.auth.uid != null;
allow write: if request.auth.uid != null;
}
}
}