mirror of
https://github.com/fergalmoran/onearmy-community-platform.git
synced 2025-12-22 01:30:48 +00:00
9 lines
179 B
Plaintext
9 lines
179 B
Plaintext
rules_version = '2';
|
|
service firebase.storage {
|
|
match /b/{bucket}/o {
|
|
match /{allPaths=**} {
|
|
allow read: if true;
|
|
allow write: if request.auth!=null;
|
|
}
|
|
}
|
|
} |