forked from sailpoint-oss/developer.sailpoint.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.js
108 lines (108 loc) · 3.64 KB
/
navbar.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
module.exports = {
title: '',
logo: {
alt: 'SailPoint Developer Community',
src: 'img/SailPoint-Developer-Community-Lockup.png',
srcDark: 'img/SailPoint-Developer-Community-Inverse-Lockup.png',
},
items: [
{
type: 'dropdown',
label: 'IdentityNow',
position: 'left',
items: [
{to: '#', label: 'API Specifications', className: 'navbar__section'},
{to: '/idn/api/v3', label: 'V3 APIs', className: 'indent'},
{to: '/idn/api/beta', label: 'Beta APIs', className: 'indent'},
{to: '#', label: 'Documentation', className: 'navbar__section'},
{to: 'idn/docs', label: 'IDN Documentation', className: 'indent'},
{to: '#', label: 'Tools', className: 'navbar__section'},
{to: 'idn/tools/cli', label: 'CLI', className: 'indent'},
{to: 'idn/tools/sdk', label: 'SDKs', className: 'indent'},
{to: 'idn/tools/rule-development-kit', label: 'Rule Development Kit', className: 'indent'},
{to: '#', label: 'External Links', className: 'navbar__section'},
{
href: 'https://documentation.sailpoint.com',
label: 'Product Documentation',
className: 'indent',
},
{
href: 'https://university.sailpoint.com/Saba/Web_spf/NA10P1PRD075/guest/categorydetail/categ000000000003041/true/xxemptyxx/',
label: 'IdentityNow Certifications',
className: 'indent',
},
],
},
{
type: 'dropdown',
label: 'IdentityIQ',
position: 'left',
items: [
{to: '#', label: 'API Specifications', className: 'navbar__section'},
{to: '/iiq/api', label: 'IIQ APIs', className: 'indent'},
{to: '#', label: 'Documentation', className: 'navbar__section'},
{to: 'iiq/docs', label: 'IIQ Documentation', className: 'indent'},
{to: '#', label: 'External Links', className: 'navbar__section'},
{
href: 'https://documentation.sailpoint.com/#identityiq',
label: 'Product Documentation',
className: 'indent',
},
{
href: 'https://university.sailpoint.com/Saba/Web_spf/NA10P1PRD075/guest/categorydetail/categ000000000003042/true/xxemptyxx/',
label: 'IdentityIQ Certifications',
className: 'indent',
},
],
},
{
type: 'dropdown',
label: 'NERM',
position: 'left',
items: [
{to: '#', label: 'API Specifications', className: 'navbar__section'},
{to: '/nerm/api', label: 'NERM APIs', className: 'indent'},
{to: '#', label: 'External Links', className: 'navbar__section'},
{
href: 'https://documentation.sailpoint.com',
label: 'Product Documentation',
className: 'indent',
}
]
},
{
position: 'left',
label: 'Blog',
to: '/blog',
},
{
position: 'left',
label: 'Ideas',
to: 'https://ideas.sailpoint.com',
},
{
position: 'left',
label: 'Discuss',
to: 'https://developer.sailpoint.com/discuss/',
},
{
type: 'dropdown',
label: 'Support',
position: 'right',
items: [
{
label: 'Submit Support Ticket',
href: 'https://support.sailpoint.com/csm?id=sc_cat_item&sys_id=a78364e81bec151050bcc8866e4bcb5c&referrer=popular_items',
},
{label: 'Compass', href: 'https://community.sailpoint.com'},
{label: 'Platform Status', href: 'https://status.sailpoint.com/'},
],
},
{
position: 'right',
to: 'https://github.com/sailpoint-oss',
className: 'header-github-link',
'aria-label': 'SailPoint Open-source GitHub',
},
],
};