diff --git a/README.md b/README.md index 7a7e777..ead01a5 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,11 @@ to have the following configured: service cloud.firestore { match /databases/{database}/documents { match /{document=**} { + // The gallery is globally readable. allow read: if true; + + // We don't yet support submitting to the gallery, so + // deny all writes for now. allow write: if false; } } diff --git a/lib/pages/gallery-page.tsx b/lib/pages/gallery-page.tsx index 7c3c421..86b765d 100644 --- a/lib/pages/gallery-page.tsx +++ b/lib/pages/gallery-page.tsx @@ -33,6 +33,10 @@ export const GalleryPage: React.FC<{}> = () => { return (
+

+ This gallery is a work in progress! You can't yet submit anything to + it, and we have no thumbnails either. It will improve over time. +