-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.json
50 lines (46 loc) · 1.23 KB
/
auth.json
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
{
"rules": {
".read": true,
".write": false,
"2014":{
"territories": {
".read": true,
".write": false
},
"users": {
"$user": {
".read": "auth.uid === $user",
".write": "auth.uid === $user && (!newData.exists() || newData.hasChildren())",
"name": {
".validate": "newData.isString() && newData.val().length <= 2000"
},
"email": {
".validate": "newData.isString() && newData.val().length <= 2000"
},
"$other": {
".validate": false
}
}
},
"troops": {
".read": true,
"$troop": {
".write": true,
".validate": "newData.hasChildren(['text'])",
"text": {
".validate": "newData.isString() && newData.val().length <= 1000"
},
"$other": {
".validate": false
}
}
},
"customers": {
"$user_id": {
".write": "auth !== null && auth.provider === 'password'",
".read" : "auth !== null && auth.provider === 'password'"
}
}
}
}
}