mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-02 10:58:10 -05:00
11 lines
219 B
Plaintext
11 lines
219 B
Plaintext
rules_version = '2';
|
|
|
|
service firebase.storage {
|
|
match /b/{bucket}/o {
|
|
match /{allPaths=**} {
|
|
allow read;
|
|
allow write: if request.auth != null && request.resource.size <= 10 * 1024 * 1024;
|
|
}
|
|
}
|
|
}
|