-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage_permissions.ini
95 lines (83 loc) · 2.47 KB
/
page_permissions.ini
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
; ALLOW * ==> allow all connections (including unauthenticated)
; ALLOW auth ==> allows all authenticated connections
[permissions]
; General
/ = ALLOW auth
/error404 = ALLOW *
/login = ALLOW *
/create-account = ALLOW *
/logout = ALLOW New
/logout/* = ALLOW New
/dashboard = ALLOW New
/help = ALLOW New
/account-settings/** = ALLOW *
; User management
/manage-users = ALLOW Administrator
/manage-users/** = ALLOW Superuser
; Participant Search
/agency-requests = ALLOW User
/participant-search = ALLOW User
/participant-search/* = ALLOW User
/ps-view-participant/* = ALLOW User
/ps-edit-participant/* = ALLOW Administrator
/report-card/* = ALLOW User
/report-card/edit/* = ALLOW User
/report-card/delete/* = ALLOW Administrator
/report-card-new-entry/* = ALLOW User
; classes
/classes = ALLOW User
/classes/create = ALLOW Coordinator
/classes/view/* = ALLOW User
/classes/edit/* = ALLOW Coordinator
/classes/delete/* = ALLOW Coordinator
/classes/archive = ALLOW Administrator
; curricula
/curricula = ALLOW User
/curricula/view/* = ALLOW User
/curricula/create = ALLOW Coordinator
/curricula/edit/* = ALLOW Coordinator
/curricula/classes/* = ALLOW Coordinator
/curricula/delete/* = ALLOW Coordinator
/curricula/archive = ALLOW Administrator
; locations
/locations = ALLOW User
/locations/create = ALLOW Coordinator
/locations/view/* = ALLOW User
/locations/edit/* = ALLOW Coordinator
/locations/delete/* = ALLOW Coordinator
;/locations/archive = ALLOW Administrator
; reports
/monthly-reports = ALLOW Coordinator
/quarterly-reports = ALLOW Coordinator
/year-end-reports = ALLOW Coordinator
/custom-reports = ALLOW Coordinator
/custom-reports-table = ALLOW Coordinator
; surveys
/surveys = ALLOW User
/surveys/* = ALLOW User
; intake / referral
/referral-form = ALLOW User
/referral-form/** = ALLOW User
/form-success = ALLOW User
/self-referral-form = ALLOW User
/self-referral-form/** = ALLOW User
/intake-packet = ALLOW User
/intake-packet/** = ALLOW User
/form-match = ALLOW User
/form-duplicate = ALLOW User
/forms-view/* = ALLOW User
; attendance
/attendance = ALLOW User
/new-class = ALLOW User
/new-class/* = ALLOW User
/attendance-form = ALLOW User
/attendance-form-confirmation = ALLOW User
/attendance-history = ALLOW User
/recent-class-view = ALLOW User
/historical-class-search = ALLOW User
/historical-class-search-results = ALLOW User
/historical-class-search-view = ALLOW User
/attendance-form-confirmed = ALLOW User
/attendance-edit-participant = ALLOW User
/edit-class-info = ALLOW User
/** = DENY *