Skip to content

Commit

Permalink
fix: storage rules
Browse files Browse the repository at this point in the history
  • Loading branch information
HYACCCINT committed Sep 14, 2023
1 parent e7648b5 commit c39faee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nextjs-end/storage.rules
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if false;
allow read;
allow write: if request.auth.uid != null;
}
}
}

0 comments on commit c39faee

Please sign in to comment.