-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathapiSidebar.js
More file actions
48 lines (48 loc) · 1.27 KB
/
apiSidebar.js
File metadata and controls
48 lines (48 loc) · 1.27 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
module.exports = [
{
title: 'Rest API',
collapsable: false,
sidebarDepth: -1,
children: [
['/api/extending-rest-api/', 'Extend Rest API']
]
},
{
title: 'Reference API Classes',
collapsable: false,
sidebarDepth: 1,
children: [
{
title: 'BaseFieldManager',
children: ['classes/base-field-manager/']
},
{
title: 'IntegrationManagerController',
children: ['classes/integration-manager-controller/']
},
{
title: 'BaseProcessor',
children: ['classes/base-processor/']
},
{
title: 'BasePaymentMethod',
children: ['classes/base-payment-method/']
},
{
title: 'PDFTemplateManager',
children: ['classes/pdf-template-manager/'],
},
]
},
{
title: 'Extend Fields',
collapsable: false,
sidebarDepth: 1,
children: [
{
title: 'Custom Field with Custom Editor',
children: ['extending-fields/my-custom-element/']
}
]
},
];