Skip to content

Commit 0d26f0f

Browse files
Mephisticjicruz96
authored andcommitted
chore(transcriptions): Update firestore rules to allow read-only access to transcription paragraphs
1 parent e3ee440 commit 0d26f0f

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)