We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d1f82b commit cabb8feCopy full SHA for cabb8fe
README.md
@@ -48,10 +48,11 @@ Eg.
48
## Set User Upload Permissions
49
Login to your firebase console, click on STORAGE, then click on RULES
50
Replace whatever default code you have their with the one below:
51
+Don't forget to replace <PROJECT_ID> with your firebase project's ID
52
53
```
54
service firebase.storage {
- match /b/project-162854887831486239.appspot.com/o {
55
+ match /b/project-<PROJECT_ID>.appspot.com/o {
56
match /{userId}/{timestamp}/{fileName} {
57
allow write: if request.auth.uid == userId;
58
allow read;
0 commit comments