Skip to content

Commit 4967df3

Browse files
committed
updated menu
1 parent 76ac60c commit 4967df3

File tree

3 files changed

+81
-75
lines changed

3 files changed

+81
-75
lines changed

docs/src/.vuepress/sidebar/operations-v1.ts

Lines changed: 0 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,3 @@
1-
export function generate_v2_latest_sidebar() {
2-
return [
3-
4-
{
5-
text: "Get Started",
6-
icon: "tool",
7-
link: "./",
8-
},
9-
"release-notes", "install", "upgrade-from-1", "allowList-mgm", "root-certificates", "passwords-secrets", {
10-
text: "FHIR Reverse Proxy",
11-
icon: "module",
12-
children: [
13-
{
14-
icon: "config",
15-
text: "Configuration",
16-
link: "fhir-reverse-proxy/configuration",
17-
}
18-
]},
19-
{
20-
text: "FHIR Server",
21-
icon: "module",
22-
prefix: "fhir/",
23-
link: "fhir/",
24-
children: [{
25-
icon: "config",
26-
text: "Configuration",
27-
link: "configuration"
28-
}, {
29-
icon: "config",
30-
text: "Access Control",
31-
link: "access-control"
32-
}, {
33-
icon: "config",
34-
text: "OpenID Connect",
35-
link: "oidc"
36-
}]
37-
}, {
38-
text: "BPE Reverse Proxy",
39-
icon: "module",
40-
children: [
41-
{
42-
icon: "config",
43-
text: "Configuration",
44-
link: "bpe-reverse-proxy/configuration",
45-
}
46-
]
47-
}, {
48-
text: "BPE Server",
49-
icon: "module",
50-
prefix: "bpe/",
51-
link: "bpe/",
52-
children: [{
53-
icon: "config",
54-
text: "Configuration",
55-
link: "configuration"
56-
}, {
57-
icon: "config",
58-
text: "Access Control",
59-
link: "access-control"
60-
}, {
61-
icon: "config",
62-
text: "OpenID Connect",
63-
link: "oidc"
64-
}]
65-
},
66-
{
67-
text: "Install Plugins",
68-
icon: "plugin",
69-
link: "install-plugins"
70-
}]
71-
}
72-
73-
741
export function generate_v1_latest_sidebar() {
752
return [
763

@@ -143,7 +70,6 @@ export function generate_v1_latest_sidebar() {
14370
}]
14471
}
14572

146-
14773
export function generate_v1_gt_eq_1_7_0_sidebar() {
14874
return [
14975

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
export function generate_v2_latest_sidebar() {
2+
return [
3+
4+
{
5+
text: "Get Started",
6+
icon: "tool",
7+
link: "./",
8+
},
9+
"release-notes", "install", "upgrade-from-1", "allowList-mgm", "root-certificates", "passwords-secrets", {
10+
text: "FHIR Reverse Proxy",
11+
icon: "module",
12+
children: [
13+
{
14+
icon: "config",
15+
text: "Configuration",
16+
link: "fhir-reverse-proxy/configuration",
17+
}
18+
]},
19+
{
20+
text: "FHIR Server",
21+
icon: "module",
22+
prefix: "fhir/",
23+
link: "fhir/",
24+
children: [{
25+
icon: "config",
26+
text: "Configuration",
27+
link: "configuration"
28+
}, {
29+
icon: "config",
30+
text: "Access Control",
31+
link: "access-control"
32+
}, {
33+
icon: "config",
34+
text: "OpenID Connect",
35+
link: "oidc"
36+
}, {
37+
icon: "config",
38+
text: "Logging",
39+
link: "logging"
40+
}]
41+
}, {
42+
text: "BPE Reverse Proxy",
43+
icon: "module",
44+
children: [
45+
{
46+
icon: "config",
47+
text: "Configuration",
48+
link: "bpe-reverse-proxy/configuration",
49+
}
50+
]
51+
}, {
52+
text: "BPE Server",
53+
icon: "module",
54+
prefix: "bpe/",
55+
link: "bpe/",
56+
children: [{
57+
icon: "config",
58+
text: "Configuration",
59+
link: "configuration"
60+
}, {
61+
icon: "config",
62+
text: "Access Control",
63+
link: "access-control"
64+
}, {
65+
icon: "config",
66+
text: "OpenID Connect",
67+
link: "oidc"
68+
}, {
69+
icon: "config",
70+
text: "Logging",
71+
link: "logging"
72+
}]
73+
},
74+
{
75+
text: "Install Plugins",
76+
icon: "plugin",
77+
link: "install-plugins"
78+
}]
79+
}

docs/src/.vuepress/theme.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { slimsearchPlugin } from "@vuepress/plugin-slimsearch";
22
import { hopeTheme } from "vuepress-theme-hope";
3-
import { generate_v1_latest_sidebar, generate_v1_gt_eq_1_7_0_sidebar, generate_v1_gt_eq_1_5_0_sidebar, generate_v1_gt_eq_1_0_0_sidebar, generate_v2_latest_sidebar } from "./sidebar/operations-v1";
3+
import { generate_v1_latest_sidebar, generate_v1_gt_eq_1_7_0_sidebar, generate_v1_gt_eq_1_5_0_sidebar, generate_v1_gt_eq_1_0_0_sidebar } from "./sidebar/operations-v1";
4+
import { generate_v2_latest_sidebar } from "./sidebar/operations-v2";
45

56
export default hopeTheme({
67
author: {

0 commit comments

Comments
 (0)