summaryrefslogtreecommitdiff
path: root/storage.rules
blob: d494542e9b286183199f96539b69ba2df56a2fee (plain)
1
2
3
4
5
6
7
service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read, write: if request.auth!=null;
    }
  }
}