Skip to content

Commit eda777c

Browse files
authored
Merge pull request #1900 from Mephistic/fix-paragraphs
Update Firestore Rules for Transcription Paragraphs
2 parents 4d9f2d6 + 97400c1 commit eda777c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

firestore.rules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,12 @@ service cloud.firestore {
9999
allow read: if true
100100
allow write: if false
101101
}
102+
103+
// public, read-only
104+
match /paragraphs/{pid} {
105+
allow read: if true
106+
allow write: if false
107+
}
102108
}
103109
}
104110
}

0 commit comments

Comments
 (0)