21 lines
413 B
Plaintext
21 lines
413 B
Plaintext
|
rules_version = '2';
|
||
|
service firebase.storage {
|
||
|
match /b/{bucket}/o {
|
||
|
match /{document=**} {
|
||
|
allow read, write: if false;
|
||
|
}
|
||
|
|
||
|
match /writeOnly.jpeg {
|
||
|
allow read: if false;
|
||
|
allow write: if true;
|
||
|
}
|
||
|
|
||
|
match /playground/{document=**} {
|
||
|
allow read, write: if true;
|
||
|
}
|
||
|
|
||
|
match /react-native-firebase-testing/{document=**} {
|
||
|
allow read, write: if true;
|
||
|
}
|
||
|
}
|
||
|
}
|