mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-06 02:36:39 +00:00
8 lines
159 B
Text
8 lines
159 B
Text
rules_version = '2';
|
|
service firebase.storage {
|
|
match /b/{bucket}/o {
|
|
match /{allPaths=**} {
|
|
allow read, write: if request.auth!=null;
|
|
}
|
|
}
|
|
}
|