From b83d3507c67985ff2b70f4f9785116b3de94ab7b Mon Sep 17 00:00:00 2001 From: Tom Arra Date: Fri, 6 May 2022 18:48:35 -0500 Subject: [PATCH] update storage rules to match dev --- firestore.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firestore.rules b/firestore.rules index fbff78f0..ba0521d0 100644 --- a/firestore.rules +++ b/firestore.rules @@ -17,7 +17,7 @@ service cloud.firestore { } // Leaderboard can be read if it doesn't contain any prohibited initials - allow read: if !prohibited(resource.data.playerInitials); + allow read: if isAuthedUser(request.auth); // A leaderboard entry can be created if the user is authenticated, // it's 3 characters long, and not a prohibited combination.