Initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
rules_version = '2';
|
||||
service cloud.firestore {
|
||||
match /databases/{database}/documents {
|
||||
match /waitlist_entries/{entryId} {
|
||||
allow read: if true;
|
||||
allow create: if request.resource.data.email is string;
|
||||
allow update, delete: if false;
|
||||
}
|
||||
match /stats/{statId} {
|
||||
allow read: if true;
|
||||
allow write: if true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user