-
Notifications
You must be signed in to change notification settings - Fork 2
/
access-resources.js
70 lines (68 loc) · 1.4 KB
/
access-resources.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
61
62
63
64
65
66
67
68
69
70
'use strict';
const {t} = require('core/i18n');
module.exports = {
dashboard: {
id: 'ionadmin:::dashboard',
name: t('Control panel')
},
securityUsers: {
id: 'ionadmin:::security-users',
name: t('Security Users')
},
securityRoles: {
id: 'ionadmin:::security-roles',
name: t('Security Roles')
},
securityResources: {
id: 'ionadmin:::security-resources',
name: t('Security Resources')
},
securitySync: {
id: 'ionadmin:::security-sync',
name: t('Security Sync')
},
profilingSlowQuery: {
id: 'ionadmin:::profiling-slow-query',
name: t('Profiling Slow queries')
},
activity: {
id: 'ionadmin:::activity',
name: t('Activity')
},
changelog: {
id: 'ionadmin:::changelog',
name: t('Changelog')
},
accesslog: {
id: 'ionadmin:::accesslog',
name: t('Access log')
},
authlog: {
id: 'ionadmin:::authlog',
name: t('Auth log')
},
token: {
id: 'ionadmin:::token',
name: t('Security token generator')
},
backup: {
id: 'ionadmin:::backup',
name: t('Backups')
},
schedule: {
id: 'ionadmin:::schedule',
name: t('Scheduling')
},
wstoken: {
id: 'ws:::gen-ws-token',
name: t('Web service security token generation')
},
recache: {
id: 'ionadmin:::recache',
name: t('Semantics cache recalculation')
},
notify: {
id: 'ionadmin:::notify',
name: t('Notifications')
}
};