Skip to content

Commit

Permalink
fix: correct read permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
thisislawatts committed Dec 2, 2021
1 parent 0290975 commit 6026cef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions firebase.storage.rules
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth!=null;
allow read: if true;
allow write: if request.auth!=null;
}
}
}
}

0 comments on commit 6026cef

Please sign in to comment.