diff --git a/README.md b/README.md index bf8f1440..e14b68dd 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # UPDATE 2023-10-08: -This project has now being officailly transferred to [Invertase](https://github.com/invertase), who will maintain this extension going forward. Please see [this issue](https://github.com/stripe/stripe-firebase-extensions/issues/524) for more details. -It is now reccomended to uninstall the `stripe/firestore-stripe-payments` extension and install `invertase/firestore-stripe-payments` from the Firebase Extension Hub. +This project has now being officially transferred to [Invertase](https://github.com/invertase), who will maintain this extension going forward. Please see [this issue](https://github.com/stripe/stripe-firebase-extensions/issues/524) for more details. +It is now recommended to uninstall the `stripe/firestore-stripe-payments` extension and install `invertase/firestore-stripe-payments` from the Firebase Extension Hub. -Alternativley, you can also use the following link to convert your current installation to the Invertase version +Alternatively, you can also use the following link to convert your current installation to the Invertase version `https://console.firebase.google.com/project/_/extensions/install?instanceId=STRIPE_EXTENSION_INSTANCE_ID&ref=invertase%2Ffirestore-stripe-payments@0.3.5` diff --git a/firestore-stripe-payments/POSTINSTALL.md b/firestore-stripe-payments/POSTINSTALL.md index 186e0387..1b9a12b5 100644 --- a/firestore-stripe-payments/POSTINSTALL.md +++ b/firestore-stripe-payments/POSTINSTALL.md @@ -39,15 +39,19 @@ service cloud.firestore { } } - match /${param:PRODUCTS_COLLECTION}/{id} { + match /${param:PRODUCTS_COLLECTION} { allow read: if true; - match /prices/{id} { - allow read: if true; - } - - match /tax_rates/{id} { + match /{id} { allow read: if true; + + match /prices/{id} { + allow read: if true; + } + + match /tax_rates/{id} { + allow read: if true; + } } } }