mirror of
https://github.com/romancm/gamebrary
synced 2024-11-10 13:44:16 +00:00
10 lines
180 B
Text
Executable file
10 lines
180 B
Text
Executable file
rules_version = '2';
|
|
|
|
service firebase.storage {
|
|
match /b/{bucket}/o {
|
|
match /{allPaths=**} {
|
|
allow read;
|
|
allow list, write: if request.auth != null;
|
|
}
|
|
}
|
|
}
|