forked from Soham792/PanelSena
-
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.24 KB
/
Copy pathdatabase.rules.json
File metadata and controls
36 lines (36 loc) · 1.24 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": {
"device_registry": {
"$deviceId": {
".read": "auth != null",
".write": "auth != null"
}
},
"pairing_sessions": {
"$code": {
".read": "auth != null",
".write": "auth != null"
}
},
"device_links": {
"$deviceId": {
".read": "auth != null && (!data.exists() || data.child('userId').val() === auth.uid || data.child('clientUid').val() === auth.uid)",
".write": "auth != null && (!data.exists() || data.child('userId').val() === auth.uid) && (!newData.exists() || newData.child('userId').val() === auth.uid)"
}
},
"users": {
"$uid": {
"authorizedClients": {
".read": "auth != null && $uid === auth.uid",
".write": "auth != null && $uid === auth.uid"
},
"displays": {
".read": "auth != null && ($uid === auth.uid || root.child('users').child($uid).child('authorizedClients').child(auth.uid).exists())",
".write": "auth != null && ($uid === auth.uid || root.child('users').child($uid).child('authorizedClients').child(auth.uid).exists())"
},
".read": "auth != null && $uid === auth.uid",
".write": "auth != null && $uid === auth.uid"
}
}
}
}