-
Notifications
You must be signed in to change notification settings - Fork 0
/
boost.config.js
60 lines (59 loc) · 1.67 KB
/
boost.config.js
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
import colors from 'vuetify/es5/util/colors'
export default {
version: '1.2.25',
modules: {
'admin': {
title: "Dashboard",
icon: "mdi-view-dashboard-outline",
to_prefix: '',
tag: '',
tag_color: colors.blue.base
},
'users': {
title: "Users",
description: "User accounts allow a person to log into the system. From here you can manage your user accounts.",
icon: "mdi-account-outline",
to_prefix: '/admin',
tag: '',
tag_color: colors.red.base,
create_btn: true
},
'roles': {
title: "Roles",
description: "Roles define what a group of users is able to do. From here you can manage your roles.",
icon: "mdi-clipboard-outline",
to_prefix: '/admin',
tag: '',
tag_color: colors.blue.base,
create_btn: true
},
'debug-logger': {
title: "Debug Logger",
description: "From here you can view all warnings, errors or debug messages logged in the system.",
icon: "mdi-radar",
to_prefix: '/admin',
tag: '',
tag_color: colors.blue.base
}
},
module_groups: {
0: {
title: null,
modules: [
'admin'
]
},
'Your Modules': {
title: 'Your Modules',
modules: []
},
'System': {
title: "System",
modules: [
'users',
'roles',
'debug-logger'
]
}
}
};