-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathnavbar.ts
More file actions
144 lines (141 loc) · 5.16 KB
/
Copy pathnavbar.ts
File metadata and controls
144 lines (141 loc) · 5.16 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
const navbarConfig = {
title: '',
logo: {
alt: 'SailPoint Developer Community',
src: 'img/SailPoint-Developer-Community-Lockup.png',
srcDark: 'img/SailPoint-Developer-Community-Inverse-Lockup.png',
},
items: [
{
type: 'custom-megaDropdown',
label: 'Documentation',
position: 'left',
groups: [
{
label: 'Identity Security Cloud',
description: 'Guides and references for building on ISC.',
items: [
{ label: 'Overview', to: '/docs' },
{ label: 'Extensibility', to: '/docs/extensibility' },
{ label: 'Connectivity', to: '/docs/connectivity' },
{ label: 'Reporting', to: '/docs/reporting' },
{ label: 'Guides', to: '/docs/guides' },
],
},
{
label: 'IdentityIQ',
description: 'Extend and customize your IIQ deployment.',
items: [
{ label: 'Overview', to: '/docs/iiq' },
{ label: 'Plugin Developer Guide', to: '/docs/iiq/plugin-developer-guide' },
],
},
],
},
{
type: 'custom-megaDropdown',
label: 'API specifications',
position: 'left',
groups: [
{
label: 'Identity Security Cloud',
description: 'API specifications and getting-started essentials.',
items: [
{ label: 'Getting Started', to: '/docs/api/getting-started' },
{ label: 'Authentication', to: '/docs/api/authentication' },
{ label: 'Authorization', to: '/docs/api/authorization' },
{ label: 'Postman Collections', to: '/docs/api/postman-collections' },
{ label: 'ISC API Specifications', to: '/docs/api' },
{ label: 'NERM API Specifications', to: '/docs/api/nerm/v1' },
{ label: 'Legacy Specifications', to: '/apis/legacy' },
],
},
{
label: 'IdentityIQ',
description: 'API Specifications and authentication details.',
items: [
{ label: 'IdentityIQ', to: '/docs/api/iiq' },
{ label: 'Authentication', to: 'https://documentation.sailpoint.com/identityiq/help/system_configuration/identityiq_global_settings/api_authentication.html'}
],
},
],
},
{
type: 'custom-megaDropdown',
label: 'Tools',
position: 'left',
groups: [
{
label: 'SDKs and Developer Tools',
description: 'Build faster with official SDKs and tooling.',
items: [
{ label: 'SDKs', to: '/docs/tools/sdk' },
{ label: 'CLI', to: '/docs/tools/cli' },
{ label: 'Rule Development Kit', to: '/docs/tools/rule-development-kit' },
{ label: 'UI Development Kit', to: '/docs/tools/ui-development-kit' },
],
},
{
label: 'Utilities',
description: 'Handy in-browser developer utilities.',
items: [
{ label: 'Escaping Tool Formatter', to: '/tools/escaping-tool-formatter' },
{ label: 'JSON Path Evaluator', to: '/tools/json-path-evaluator' },
{ label: 'Velocity PlayGround', to: '/tools/velocity-playground' },
{ label: 'XPath Evaluator', to: '/tools/xpath-evaluator' },
],
},
],
},
{
type: 'custom-megaDropdown',
label: 'Community',
position: 'left',
groups: [
{
label: 'Connect',
description: 'Join the conversation and share your work.',
items: [
{ label: 'Developer forum', to: 'https://developer.sailpoint.com/discuss/' },
{ label: 'CoLab marketplace', to: '/colab' },
{ label: 'Ambassador program', to: '/ambassadors' },
],
},
{
label: 'Learn',
description: 'Videos, blog posts, and program info.',
items: [
{ label: 'Video library', to: '/videos' },
{ label: 'Developer blog', to: '/blog' },
{ label: 'Community policies', to: '/docs/community-policies' },
{ label: 'About Developer Relations', to: '/about-developer-relations' },
],
},
],
},
{
type: 'custom-megaDropdown',
label: 'Support',
position: 'right',
groups: [
{
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',
},
],
};
export default navbarConfig;