-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.json
43 lines (43 loc) · 916 Bytes
/
settings.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
{
"active": true,
"blueprint": {
"template_folder": "templates",
"static_folder": "static",
"static_url_path": "/template-static"
},
"name": "Template Plugin",
"rbac": {
"get_requests": {
"/panel_form": "access",
"/template_form": "access",
"/template_devices": "access"
},
"menu": {
"Template": {
"icon": "shield",
"rbac": "access",
"pages": {
"Page": {
"subpages": {
"Subpage": {
"endpoint": "/template_form",
"rbac": "access"
}
},
"rbac": "access"
},
"Devices": {
"endpoint": "/template_devices",
"rbac": "access"
}
}
}
},
"post_requests": {
"/process_form_data": "access"
}
},
"database": {
"import_export_models": ["port"]
}
}