blob: bf564fe292ac7e514066da3b5cbf30c55e901499 [file] [log] [blame]
Pingping Lin96f17e92017-05-04 18:16:54 -07001angular.module('app')
2 .constant('StyleConfig', {
3 projectName: 'M-CORD',
4 favicon: 'cord-favicon.png',
5 background: 'mcord-bg.jpg',
6 payoff: 'Your way toward 5G',
7 logo: 'cord-logo.png',
8 routes: [
9 {
10 label: 'Slices',
11 state: 'xos.core.slices'
12 },
13 {
14 label: 'Instances',
15 state: 'xos.core.instances'
16 },
17 {
18 label: 'Nodes',
19 state: 'xos.core.nodes'
20 },
21 {
22 label: 'Users',
23 state: 'xos.core.users'
24 },
25 {
26 label: 'Services',
27 state: 'xos.mcord.services',
28 // parent: 'xos.mcord'
29 },
30 {
31 label: 'MCORD',
32 state: 'xos.mcord'
33 },
34 {
35 label: 'Global Topology',
36 state: 'xos.mcord.topo',
37 params: {sliceId: ''},
38 parent: 'xos.mcord'
39 },
40 {
41 label: 'Public Safety',
42 state: 'xos.mcord.topo',
43 params: {sliceId: 1},
44 parent: 'xos.mcord'
45 },
46 {
47 label: 'RAN Slicing',
48 state: 'xos.mcord.topo',
49 params: {sliceId: '3,4'},
50 parent: 'xos.mcord'
51 },
52 {
53 label: 'Connectionless GW',
54 state: 'xos.mcord.topo',
55 params: {sliceId: 2},
56 parent: 'xos.mcord'
57 },
58 ]
59 });
60
61