Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 187 Bytes

File metadata and controls

11 lines (11 loc) · 187 Bytes

Firebase Storage Rules

service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read;
      allow write: if request.auth != null;
    }
  }
}