Skip to content

Commit

Permalink
Merge pull request #1285 from ONEARMY/fix/correct-rules
Browse files Browse the repository at this point in the history
fix: correct read permissions
  • Loading branch information
davehakkens authored Dec 2, 2021
2 parents 0290975 + 6026cef commit d1b7bce
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 d1b7bce

Please sign in to comment.