firebase / firebase/codelab-friendlychat-android
Add more stringent Cloud Storage rules
Open
- Dominant language
- Kotlin
- Stars
- 278
- Forks
- 344
- Avg merge
- 3d 5h
- Merged PRs (30d)
- 4
Description
Right now we have:
```
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}
```
We should look into ways to make access controls more effective.
Contributor guide
Assessment
This issue has not been assessed yet.