Skip to content

Instantly share code, notes, and snippets.

@dmcgrath
Created December 15, 2017 01:17
Show Gist options
  • Save dmcgrath/3647295dc6285a53e87d50a7f9ace6be to your computer and use it in GitHub Desktop.
Save dmcgrath/3647295dc6285a53e87d50a7f9ace6be to your computer and use it in GitHub Desktop.
Initial rules
service cloud.firestore {
match /databases/{database}/documents {
match /notes/{doc} {
allow list: if false;
allow get: if true;
allow create: if true;
allow delete: if true;
allow update: if true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment