Skip to content

Instantly share code, notes, and snippets.

@Chizaram-Igolo
Created July 30, 2021 19:29
Show Gist options
  • Save Chizaram-Igolo/556e153bf6432ea171dd430a24b0cf4d to your computer and use it in GitHub Desktop.
Save Chizaram-Igolo/556e153bf6432ea171dd430a24b0cf4d to your computer and use it in GitHub Desktop.
// Allow read/write access on all documents to any user signed in to the application
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if request.auth != null;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment