guest mode

This commit is contained in:
2024-02-24 22:01:48 +01:00
parent 150e20ccfb
commit 4aeb452434
18 changed files with 601 additions and 55 deletions

View File

@@ -17,6 +17,10 @@ service cloud.firestore {
allow read: if request.auth.uid != null;
}
match /guest/{guestId} {
allow read: if true;
allow write: if request.auth.uid != null;
}
match /songs/{song} {
allow read: if request.auth.uid != null;
allow write: if request.auth.uid != null;