-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
91 lines (90 loc) · 2.42 KB
/
Copy pathsidebars.js
File metadata and controls
91 lines (90 loc) · 2.42 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
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
const sidebars = {
mainSidebar: [
{
type: "category",
label: "Information",
collapsible: false,
collapsed: false,
items: [
"getting-started/index",
"authentication/index",
"errors/index",
"changelog/index"
]
},
{
type: "category",
label: "Endpoints",
collapsible: false,
collapsed: false,
items: [
{
type: "category",
label: "Carparks",
items: [
"endpoints/carparks/index",
"endpoints/carparks/lookup",
{
type: "category",
label: "Parking Spaces",
items: [
"endpoints/carparks/parking-spaces/index",
"endpoints/carparks/parking-spaces/list-dates",
"endpoints/carparks/parking-spaces/all-info-for-date"
]
}
]
},
{
type: "category",
label: "Vehicles",
items: [
"endpoints/vehicles/index",
"endpoints/vehicles/lookup",
"endpoints/vehicles/colors",
"endpoints/vehicles/makes",
"endpoints/vehicles/models"
]
},
{
type: "category",
label: "Buses",
items: [
"endpoints/buses/stops",
"endpoints/buses/stop-info",
"endpoints/buses/updates",
"endpoints/buses/updates-minimal"
]
},
{
type: "category",
label: "Charts",
items: [
"endpoints/charts/bus-passengers",
"endpoints/charts/driving-test-results",
"endpoints/charts/monthly-rainfall",
"endpoints/charts/road-traffic",
"endpoints/charts/registered-vehicles"
]
},
{
type: "category",
label: "Freedom of Information",
items: [
"endpoints/foi-requests/index",
"endpoints/foi-requests/authors",
"endpoints/foi-requests/producers",
"endpoints/foi-requests/stats",
]
},
"endpoints/recycling/index",
"endpoints/defibrillators/index",
// "endpoints/product-recalls/index",
"endpoints/toilets/index",
"endpoints/eatsafe/index"
]
}
]
};
module.exports = sidebars;