Skip to content

Commit

Permalink
lesson-11 source code push
Browse files Browse the repository at this point in the history
  • Loading branch information
learnwithsumit committed Aug 31, 2021
1 parent 21efecb commit c3a4795
Show file tree
Hide file tree
Showing 10 changed files with 2,404 additions and 38 deletions.
22 changes: 22 additions & 0 deletions database/firebase-rules.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"rules": {
"videos": {
".read": true,
".write": false
},
"quiz": {
".read": "auth != null",
".write": "auth != null"
},
"answers": {
".read": "auth != null",
".write": "auth != null"
},
"result": {
"$uid": {
".read": "$uid === auth.uid",
".write": "$uid === auth.uid"
}
}
}
}
Loading

0 comments on commit c3a4795

Please sign in to comment.