Skip to main content

Issue with uploading Files or Images?

Rowy uses Firebase Storage to store files. Firebase Storage rules must grant permissions for the table and user on the table you'd like to upload files to via Rowy, if you are using custom rules.

storageIssue3

Setting Firebase Storage Rules

If you are using the default rules, Rowy should have automatically updated the rules for you during project setup. If you accidentally changed the rules, you can reset the rules:

  1. Go to the Firebase console
  2. On the left sidebar, expand Build and click on Storage
storageIssue1
  1. On the top of the page, click on Rules
  2. Set the rules to default rules
storageIssue2

Default Firebase Storage Rules

rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth.token.roles.size() > 0;
}
}
}