|
1 | 1 | [ |
2 | 2 | { |
3 | 3 | "type": "doc", |
4 | | - "id": "index", |
| 4 | + "id": "bolt-python/index", |
5 | 5 | "label": "Bolt for Python", |
6 | 6 | "className": "sidebar-title" |
7 | 7 | }, |
|
11 | 11 | "label": "Guides", |
12 | 12 | "collapsed": false, |
13 | 13 | "items": [ |
14 | | - "getting-started", |
| 14 | + "bolt-python/getting-started", |
15 | 15 | { |
16 | 16 | "type": "category", |
17 | 17 | "label": "Slack API calls", |
18 | | - "items": ["concepts/message-sending", "concepts/web-api"] |
| 18 | + "items": ["bolt-python/concepts/message-sending", "bolt-python/concepts/web-api"] |
19 | 19 | }, |
20 | 20 | { |
21 | 21 | "type": "category", |
22 | 22 | "label": "Events", |
23 | | - "items": ["concepts/message-listening", "concepts/event-listening"] |
| 23 | + "items": ["bolt-python/concepts/message-listening", "bolt-python/concepts/event-listening"] |
24 | 24 | }, |
25 | 25 | { |
26 | 26 | "type": "category", |
27 | 27 | "label": "App UI & Interactivity", |
28 | 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" |
| 29 | + "bolt-python/concepts/acknowledge", |
| 30 | + "bolt-python/concepts/shortcuts", |
| 31 | + "bolt-python/concepts/commands", |
| 32 | + "bolt-python/concepts/actions", |
| 33 | + "bolt-python/concepts/opening-modals", |
| 34 | + "bolt-python/concepts/updating-pushing-views", |
| 35 | + "bolt-python/concepts/view-submissions", |
| 36 | + "bolt-python/concepts/select-menu-options", |
| 37 | + "bolt-python/concepts/app-home" |
38 | 38 | ] |
39 | 39 | }, |
40 | | - "concepts/ai-apps", |
| 40 | + "bolt-python/concepts/ai-apps", |
41 | 41 | { |
42 | 42 | "type": "category", |
43 | 43 | "label": "Custom Steps", |
44 | 44 | "items": [ |
45 | | - "concepts/custom-steps", |
46 | | - "concepts/custom-steps-dynamic-options" |
| 45 | + "bolt-python/concepts/custom-steps", |
| 46 | + "bolt-python/concepts/custom-steps-dynamic-options" |
47 | 47 | ] |
48 | 48 | }, |
49 | 49 | { |
50 | 50 | "type": "category", |
51 | 51 | "label": "App Configuration", |
52 | 52 | "items": [ |
53 | | - "concepts/socket-mode", |
54 | | - "concepts/errors", |
55 | | - "concepts/logging", |
56 | | - "concepts/async" |
| 53 | + "bolt-python/concepts/socket-mode", |
| 54 | + "bolt-python/concepts/errors", |
| 55 | + "bolt-python/concepts/logging", |
| 56 | + "bolt-python/concepts/async" |
57 | 57 | ] |
58 | 58 | }, |
59 | 59 | { |
60 | 60 | "type": "category", |
61 | 61 | "label": "Middleware & Context", |
62 | 62 | "items": [ |
63 | | - "concepts/global-middleware", |
64 | | - "concepts/listener-middleware", |
65 | | - "concepts/context" |
| 63 | + "bolt-python/concepts/global-middleware", |
| 64 | + "bolt-python/concepts/listener-middleware", |
| 65 | + "bolt-python/concepts/context" |
66 | 66 | ] |
67 | 67 | }, |
68 | | - "concepts/lazy-listeners", |
| 68 | + "bolt-python/concepts/lazy-listeners", |
69 | 69 | { |
70 | 70 | "type": "category", |
71 | 71 | "label": "Adaptors", |
72 | | - "items": ["concepts/adapters", "concepts/custom-adapters"] |
| 72 | + "items": ["bolt-python/concepts/adapters", "bolt-python/concepts/custom-adapters"] |
73 | 73 | }, |
74 | 74 | { |
75 | 75 | "type": "category", |
76 | 76 | "label": "Authorization & Security", |
77 | 77 | "items": [ |
78 | | - "concepts/authenticating-oauth", |
79 | | - "concepts/authorization", |
80 | | - "concepts/token-rotation" |
| 78 | + "bolt-python/concepts/authenticating-oauth", |
| 79 | + "bolt-python/concepts/authorization", |
| 80 | + "bolt-python/concepts/token-rotation" |
81 | 81 | ] |
82 | 82 | }, |
83 | 83 | { |
84 | 84 | "type": "category", |
85 | 85 | "label": "Legacy", |
86 | | - "items": ["legacy/steps-from-apps"] |
| 86 | + "items": ["bolt-python/legacy/steps-from-apps"] |
87 | 87 | } |
88 | 88 | ] |
89 | 89 | }, |
|
92 | 92 | "type": "category", |
93 | 93 | "label": "Tutorials", |
94 | 94 | "items": [ |
95 | | - "tutorial/ai-chatbot/ai-chatbot", |
96 | | - "tutorial/custom-steps/custom-steps", |
97 | | - "tutorial/custom-steps-for-jira/custom-steps-for-jira", |
98 | | - "tutorial/custom-steps-workflow-builder-new/custom-steps-workflow-builder-new", |
99 | | - "tutorial/custom-steps-workflow-builder-existing/custom-steps-workflow-builder-existing", |
100 | | - "tutorial/modals/modals" |
| 95 | + "bolt-python/tutorial/ai-chatbot/ai-chatbot", |
| 96 | + "bolt-python/tutorial/custom-steps/custom-steps", |
| 97 | + "bolt-python/tutorial/custom-steps-for-jira/custom-steps-for-jira", |
| 98 | + "bolt-python/tutorial/custom-steps-workflow-builder-new/custom-steps-workflow-builder-new", |
| 99 | + "bolt-python/tutorial/custom-steps-workflow-builder-existing/custom-steps-workflow-builder-existing", |
| 100 | + "bolt-python/tutorial/modals/modals" |
101 | 101 | ] |
102 | 102 | }, |
103 | 103 | { "type": "html", "value": "<hr>" }, |
|
0 commit comments