Skip to content

Commit e8def80

Browse files
committed
updated saas getting-started
1 parent 414c776 commit e8def80

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
File renamed without changes.

content/saas/getting-started/_index.md renamed to content/saas/getting-started.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,10 @@ rules_version = '2';
163163
164164
service cloud.firestore {
165165
match /databases/{database}/documents {
166+
// Allow authenticated users to read and write their own user document
167+
match /users/{userId} {
168+
allow read, write: if request.auth != null && request.auth.uid == userId;
169+
}
166170
match /subscriptions/{docId} {
167171
allow list: if request.auth != null;
168172
allow get: if request.auth != null

0 commit comments

Comments
 (0)