Skip to content

Commit

Permalink
Update bundle identifier in docs (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnuravi authored Dec 26, 2022
1 parent aedce34 commit 74e942d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/1-cardinalkit-app/2-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,12 @@ service cloud.firestore {
}
```

Now navigate to the "Storage" tab in your Firebase dashboard. Find the "Rules" section there and add the following rules which will allow users to upload files to Cloud Storage (including the signed consent PDF generated during onboarding). You will need to change "edu.stanford.cardinalkit" in line 3 to the bundle identifier of your app.
Now navigate to the "Storage" tab in your Firebase dashboard. Find the "Rules" section there and add the following rules which will allow users to upload files to Cloud Storage (including the signed consent PDF generated during onboarding). You will need to change "edu.stanford.cardinalkitexample" in line 3 to the bundle identifier of your app.

```
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o/studies/edu.stanford.cardinalkit {
match /b/{bucket}/o/studies/edu.stanford.cardinalkitexample {
match /users/{userId}/{file} {
allow read, write: if request.auth.uid == userId;
}
Expand Down

0 comments on commit 74e942d

Please sign in to comment.