-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.rules.json
More file actions
36 lines (36 loc) · 1.78 KB
/
database.rules.json
File metadata and controls
36 lines (36 loc) · 1.78 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
{
"rules": {
".read": "root.child('users').child(auth.uid).child('active').val() === true && root.child('users').child(auth.uid).child('sys_admin').val() === true",
".write": "root.child('users').child(auth.uid).child('active').val() === true && root.child('users').child(auth.uid).child('sys_admin').val() === true",
"users": {
".indexOn": ["site"],
".read": "data.child(auth.uid).child('active').val() === true && (data.child(auth.uid).child('site_admin').val() === true || data.child(auth.uid).child('sys_admin').val() === true)",
".write": "data.child(auth.uid).child('active').val() === true && (data.child(auth.uid).child('site_admin').val() === true || data.child(auth.uid).child('sys_admin').val() === true)",
"$uid": {
".read": "$uid === auth.uid && data.child('active').val() === true",
".write": "$uid === auth.uid && data.child('active').val() === true"
}
},
"sites": {
"$site": {
"outages": {
".indexOn": ["approver","created"],
"$outage": {
".read": "data.child('Public').val() === true && (data.child('status').val() === 'Sent' || data.child('status').val() === 'Complete')"
}
},
"outage_types": {
".read": "true"
},
"systems": {
".read": "true"
},
"contacts": {
".read": "true"
},
".read": "$site === root.child('users').child(auth.uid).child('site').val() && root.child('users').child(auth.uid).child('active').val() === true",
".write": "$site === root.child('users').child(auth.uid).child('site').val() && root.child('users').child(auth.uid).child('active').val() === true"
}
}
}
}