production secret added

This commit is contained in:
2026-03-24 14:16:27 -04:00
parent d772b7ec9c
commit 1300084481
5 changed files with 60 additions and 10 deletions

View File

@@ -50,6 +50,12 @@ service cloud.firestore {
allow update: if false;
}
// Pending donations (created before payment, confirmed via webhook)
match /pendingDonations/{donationId} {
allow create: if true;
allow read, update, delete: if false;
}
// Newsletter subscribers
match /subscribers/{subscriberId} {
allow create: if true;