guest mode
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user