Initial commit

This commit is contained in:
User
2026-08-14 14:17:48 +02:00
commit 52dc765da4
46 changed files with 6318 additions and 0 deletions
+14
View File
@@ -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;
}
}
}