storage.rules 173 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 service firebase.storage { match /b/{bucket}/o { match /{userId}/{postId}/{fileName} { allow write: if request.auth.uid == userId; allow read; } } }