
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
[1]번은 firebase 에서 deployed 설정이고 [2]번은 flutterflow내에서 들어갔을 때 설정입니
질문에 답변 주신대로 변경하였으나 플러터플로우내에서 설정은 변경이 되지 않네요
[1] rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
//allow read, write: if false;
allow read,write: if request.auth != null;
}
match /users/{userId}/{allPaths=**} {
allow read: if request.auth.uid == userId ;
allow write: if request.auth.uid == userId;
}
}
}
[2] rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if false;
}
match /users/{userId}/{allPaths=**} {
allow read: if true;
allow write: if request.auth.uid == userId;
}
}
}
