|
1 | 1 | /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ |
2 | 2 | const sidebars = { |
3 | | - sidebarBoltPy: [ |
4 | | - { |
5 | | - type: 'doc', |
6 | | - id: 'index', |
7 | | - label: 'Bolt for Python', |
8 | | - className: 'sidebar-title', |
9 | | - }, |
10 | | - 'getting-started', |
11 | | - { |
12 | | - type: "category", |
13 | | - label: "Slack API calls", |
14 | | - items: ["concepts/message-sending", "concepts/web-api"], |
15 | | - }, |
16 | | - { |
17 | | - type: "category", |
18 | | - label: "Events API", |
19 | | - items: ["concepts/message-listening", "concepts/event-listening"], |
20 | | - }, |
21 | | - { |
22 | | - type: "category", |
23 | | - label: "App UI & Interactivity", |
24 | | - items: [ |
25 | | - "concepts/acknowledge", |
26 | | - "concepts/shortcuts", |
27 | | - "concepts/commands", |
28 | | - "concepts/actions", |
29 | | - "concepts/opening-modals", |
30 | | - "concepts/updating-pushing-views", |
31 | | - "concepts/view-submissions", |
32 | | - "concepts/select-menu-options", |
33 | | - "concepts/app-home", |
34 | | - ], |
35 | | - }, |
36 | | - 'concepts/assistant', |
37 | | - 'concepts/custom-steps', |
38 | | - { |
39 | | - type: "category", |
40 | | - label: "App Configuration", |
41 | | - items: [ |
42 | | - "concepts/socket-mode", |
43 | | - "concepts/errors", |
44 | | - "concepts/logging", |
45 | | - 'concepts/async', |
46 | | - ], |
47 | | - }, |
48 | | - { |
49 | | - type: "category", |
50 | | - label: "Middleware & Context", |
51 | | - items: [ |
52 | | - "concepts/global-middleware", |
53 | | - "concepts/listener-middleware", |
54 | | - 'concepts/context', |
55 | | - ], |
56 | | - }, |
57 | | - 'concepts/lazy-listeners', |
58 | | - { |
59 | | - type: "category", |
60 | | - label: "Adaptors", |
61 | | - items: [ |
62 | | - 'concepts/adapters', |
63 | | - 'concepts/custom-adapters', |
64 | | - ], |
65 | | - }, |
66 | | - { |
67 | | - type: "category", |
68 | | - label: "Authorization & Security", |
69 | | - items: [ |
70 | | - "concepts/authenticating-oauth", |
71 | | - "concepts/authorization", |
72 | | - "concepts/token-rotation", |
73 | | - ], |
74 | | - }, |
75 | | - { |
76 | | - type: 'category', |
77 | | - label: 'Legacy', |
78 | | - items: [ |
79 | | - 'concepts/steps-from-apps', |
80 | | - ], |
81 | | - }, |
82 | | - { type: 'html', value: '<hr>' }, |
83 | | - { |
84 | | - type: 'category', |
85 | | - label: 'Tutorials', |
86 | | - items: [ |
87 | | - 'tutorial/ai-chatbot' |
88 | | - ], |
89 | | - }, |
90 | | - { type: 'html', value: '<hr>' }, |
91 | | - { |
92 | | - type: 'link', |
93 | | - label: 'Reference', |
94 | | - href: 'https://tools.slack.dev/bolt-python/api-docs/slack_bolt/', |
95 | | - }, |
96 | | - { type: 'html', value: '<hr>' }, |
97 | | - { |
98 | | - type: 'link', |
99 | | - label: 'Release notes', |
100 | | - href: 'https://github.com/slackapi/bolt-python/releases', |
101 | | - }, |
102 | | - { |
103 | | - type: 'link', |
104 | | - label: 'Code on GitHub', |
105 | | - href: 'https://github.com/SlackAPI/bolt-python', |
106 | | - }, |
107 | | - { |
108 | | - type: 'link', |
109 | | - label: 'Contributors Guide', |
110 | | - href: 'https://github.com/SlackAPI/bolt-python/blob/main/.github/contributing.md', |
111 | | - }, |
112 | | - ], |
| 3 | + sidebarBoltPy: [ |
| 4 | + { |
| 5 | + type: "category", |
| 6 | + label: "Guides", |
| 7 | + items: [ |
| 8 | + { |
| 9 | + type: "doc", |
| 10 | + id: "index", |
| 11 | + label: "Bolt for Python", |
| 12 | + className: "sidebar-title", |
| 13 | + }, |
| 14 | + "getting-started", |
| 15 | + { |
| 16 | + type: "category", |
| 17 | + label: "Slack API calls", |
| 18 | + items: ["concepts/message-sending", "concepts/web-api"], |
| 19 | + }, |
| 20 | + { |
| 21 | + type: "category", |
| 22 | + label: "Events API", |
| 23 | + items: ["concepts/message-listening", "concepts/event-listening"], |
| 24 | + }, |
| 25 | + { |
| 26 | + type: "category", |
| 27 | + label: "App UI & Interactivity", |
| 28 | + items: [ |
| 29 | + "concepts/acknowledge", |
| 30 | + "concepts/shortcuts", |
| 31 | + "concepts/commands", |
| 32 | + "concepts/actions", |
| 33 | + "concepts/opening-modals", |
| 34 | + "concepts/updating-pushing-views", |
| 35 | + "concepts/view-submissions", |
| 36 | + "concepts/select-menu-options", |
| 37 | + "concepts/app-home", |
| 38 | + ], |
| 39 | + }, |
| 40 | + "concepts/assistant", |
| 41 | + "concepts/custom-steps", |
| 42 | + { |
| 43 | + type: "category", |
| 44 | + label: "App Configuration", |
| 45 | + items: [ |
| 46 | + "concepts/socket-mode", |
| 47 | + "concepts/errors", |
| 48 | + "concepts/logging", |
| 49 | + "concepts/async", |
| 50 | + ], |
| 51 | + }, |
| 52 | + { |
| 53 | + type: "category", |
| 54 | + label: "Middleware & Context", |
| 55 | + items: [ |
| 56 | + "concepts/global-middleware", |
| 57 | + "concepts/listener-middleware", |
| 58 | + "concepts/context", |
| 59 | + ], |
| 60 | + }, |
| 61 | + "concepts/lazy-listeners", |
| 62 | + { |
| 63 | + type: "category", |
| 64 | + label: "Adaptors", |
| 65 | + items: ["concepts/adapters", "concepts/custom-adapters"], |
| 66 | + }, |
| 67 | + { |
| 68 | + type: "category", |
| 69 | + label: "Authorization & Security", |
| 70 | + items: [ |
| 71 | + "concepts/authenticating-oauth", |
| 72 | + "concepts/authorization", |
| 73 | + "concepts/token-rotation", |
| 74 | + ], |
| 75 | + }, |
| 76 | + { |
| 77 | + type: "category", |
| 78 | + label: "Legacy", |
| 79 | + items: ["concepts/steps-from-apps"], |
| 80 | + }, |
| 81 | + ], |
| 82 | + }, |
| 83 | + { type: "html", value: "<hr>" }, |
| 84 | + { |
| 85 | + type: "category", |
| 86 | + label: "Tutorials", |
| 87 | + items: ["tutorial/ai-chatbot", "tutorial/getting-started-http"], |
| 88 | + }, |
| 89 | + { type: "html", value: "<hr>" }, |
| 90 | + { |
| 91 | + type: "link", |
| 92 | + label: "Reference", |
| 93 | + href: "https://tools.slack.dev/bolt-python/api-docs/slack_bolt/", |
| 94 | + }, |
| 95 | + { type: "html", value: "<hr>" }, |
| 96 | + { |
| 97 | + type: "link", |
| 98 | + label: "Release notes", |
| 99 | + href: "https://github.com/slackapi/bolt-python/releases", |
| 100 | + }, |
| 101 | + { |
| 102 | + type: "link", |
| 103 | + label: "Code on GitHub", |
| 104 | + href: "https://github.com/SlackAPI/bolt-python", |
| 105 | + }, |
| 106 | + { |
| 107 | + type: "link", |
| 108 | + label: "Contributors Guide", |
| 109 | + href: "https://github.com/SlackAPI/bolt-python/blob/main/.github/contributing.md", |
| 110 | + }, |
| 111 | + ], |
113 | 112 | }; |
114 | 113 |
|
115 | 114 | export default sidebars; |
0 commit comments