-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathdatabase.rules.json
More file actions
77 lines (77 loc) · 2.19 KB
/
database.rules.json
File metadata and controls
77 lines (77 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"rules": {
"blueprints": {
".read": "true",
"$blueprint": {
".write": "!data.exists() || data.child('author').child('userId').val() === auth.uid && newData.exists() || root.child('moderators').child(auth.uid).val() === true",
".validate": "newData.hasChildren(['author'])",
"author": {
".validate": "newData.child('userId').isString()",
"userId": {
".validate": "newData.val() === auth.uid"
}
},
"favorites": {
"$uid": {
".write": "auth != null && auth.uid == $uid",
".validate": "newData.isBoolean()"
}
},
"numberOfFavorites": {
".write": "auth != null"
}
}
},
"users": {
".read": "root.child('moderators').child(auth.uid).val() === true",
"$uid": {
".read": "auth != null && auth.uid == $uid",
".write": "auth != null && auth.uid == $uid",
"blueprints": {
".read": "true",
".write": "root.child('moderators').child(auth.uid).val() === true",
"$blueprintId": {
".validate": "newData.isBoolean()"
}
},
"displayName": {
".read": "true"
}
}
},
"moderators": {
".read": "true"
},
"thumbnails": {
".read": "true",
"$blueprint": {
".write": "root.child('blueprints').child($blueprint).child('author').child('userId').val() === auth.uid || root.child('moderators').child(auth.uid).val() === true"
}
},
"blueprintSummaries": {
".read": "true",
".indexOn": ["lastUpdatedDate", "authorId", "numberOfFavorites"],
"$blueprint": {
".write": "root.child('blueprints').child($blueprint).child('author').child('userId').val() === auth.uid || root.child('moderators').child(auth.uid).val() === true",
"numberOfFavorites": {
".write": "auth != null"
}
}
},
"blueprintsPrivate": {
".read": "true",
"$blueprint": {
".write": "root.child('blueprints').child($blueprint).child('authorId').val() === auth.uid || root.child('blueprints').child($blueprint).child('author').child('userId').val() === auth.uid || root.child('moderators').child(auth.uid).val() === true"
}
},
"tags": {
".read": "true",
".indexOn": [".value"]
},
"byTag": {
".read": "true",
".write": "true",
".indexOn": [".value"]
}
}
}