Advertisement
Alior

Untitled

Oct 23rd, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.00 KB | None | 0 0
  1. {
  2.   "rules": {
  3.     "Admins": {
  4.       ".read": true,
  5.       ".write": false
  6.     },
  7.     "Users": {
  8.       "$uid": {
  9.         "Progression": {
  10.           ".read": true,
  11.           ".write": "$uid === auth.uid"
  12.         },
  13.         "Player state": {
  14.           ".read": true,
  15.           ".write": "$uid === auth.uid"
  16.         },
  17.         "Inventory": {
  18.           ".read": "$uid === auth.uid",
  19.           ".write": "$uid === auth.uid"
  20.         },
  21.         "Settings": {
  22.           ".read": true,
  23.           ".write": "$uid === auth.uid"
  24.         },
  25.         "Status": {
  26.           ".read": "$uid === auth.uid",
  27.           ".write": "root.child('Users').child($uid).child('Status').child('Admin').val() === true"
  28.         },
  29.         "Messaging": {
  30.           ".read": true,
  31.           ".write": "$uid === auth.uid"
  32.         }
  33.       }
  34.     },
  35.     "Proposed": {
  36.       "$language": {
  37.         "$word": {
  38.           ".write": "!data.exists() || !newData.exists()",
  39.           ".read": true
  40.         }
  41.       }
  42.     }
  43.   }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement