-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstorage.rules
57 lines (55 loc) · 1.59 KB
/
storage.rules
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
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /users {
match /{userUid} {
match /{allPaths=**} {
allow read, write: if (request.auth != null && request.auth.uid == userUid)
}
}
}
match /sistemaEscolar {
match /infoEscola {
match /{allPaths=**} {
allow read, write: if
(request.auth!=null &&
(request.auth.token.secretaria == true ||
request.auth.token.master == true))
}
}
match /billetAttachments {
match /{allPaths=**} {
allow read, write: if
(request.auth!=null &&
(request.auth.token.secretaria == true ||
request.auth.token.master == true || request.auth.token.adm == true))
}
}
match /studentFiles {
match /{allPaths=**} {
allow read, write: if
(request.auth!=null &&
(request.auth.token.secretaria == true ||
request.auth.token.master == true || request.auth.token.adm == true))
allow create
}
}
match /alunos {
match /{allPaths=**} {
allow read, write: if
(request.auth!=null &&
(request.auth.token.secretaria == true ||
request.auth.token.master == true));
allow read: if request.auth!=null && request.auth.token.aluno == true;
}
}
match /chamados {
match /{allPaths=**} {
allow read, write: if
(request.auth!=null &&
(request.auth.token.master == true));
}
}
}
}
}