250613
This commit is contained in:
@@ -13,7 +13,13 @@ service cloud.firestore {
|
||||
// Either the authenticated user's UID matches the document UID OR they have an elevated role
|
||||
allow read, write: if request.auth.uid == docId || isElevatedRole();
|
||||
}
|
||||
// ✅ Allow anyone to read/write from wadizBoards
|
||||
|
||||
match /wadizes/{docId} {
|
||||
|
||||
allow read, write: if true;
|
||||
|
||||
}
|
||||
// Match individual progress documents by UID
|
||||
match /progresses/{userId} {
|
||||
// Either the authenticated user's UID matches the document UID OR they have an elevated role
|
||||
|
||||
Reference in New Issue
Block a user