mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-16 19:57:49 +01:00
9 lines
176 B
Plaintext
9 lines
176 B
Plaintext
|
|
rules_version = '2';
|
||
|
|
service firebase.storage {
|
||
|
|
match /b/{bucket}/o {
|
||
|
|
match /{allPaths=**} {
|
||
|
|
allow read, write: if request.auth.token.roles.size() > 0;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|