-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresource-map.js
77 lines (77 loc) · 1.35 KB
/
resource-map.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
71
72
73
74
75
76
77
module.exports = {
apps: {
singular: 'app',
prefix: 'app-',
idKey: 'app_id'
},
clusters: {
singular: 'cluster',
prefix: 'cl-',
idKey: 'cluster_id'
},
cluster_nodes: {
singular: 'cluster_node',
prefix: 'cln-',
idKey: 'node_id'
},
repos: {
singular: 'repo',
prefix: 'repo-',
idKey: 'repo_id'
},
runtimes: {
singular: 'runtime',
prefix: 'rt-',
idKey: 'runtime_id'
},
categories: {
singular: 'category',
prefix: 'ca-',
idKey: 'category_id'
},
users: {
singular: 'user',
prefix: 'user-',
idKey: 'user_id'
},
roles: {
singular: 'role',
prefix: 'role-',
idKey: 'role_id'
},
organizations: {
singular: 'organization',
prefix: 'org-',
idKey: 'organization_id'
},
groups: {
singular: 'group',
prefix: 'group-',
idKey: 'group_id'
},
authorities: {
singular: 'authority',
prefix: 'aut-',
idKey: 'authority_id'
},
app_versions: {
singular: 'app_version',
prefix: 'appv-',
idKey: 'version_id'
},
cluster_activities: {
singular: 'cluster_activity',
prefix: 'activity-',
idKey: 'activity_id'
},
statistics: {
singular: 'statistics',
prefix: 'statistics-',
idKey: 'statistic_id'
},
cluster_nodes: {
singular: 'cluster_node',
prefix: 'node-',
idKey: 'node_id'
}
};