Skip to content

Commit af2b737

Browse files
reference links
1 parent 5c61bd7 commit af2b737

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+68
-69
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<img alt="Documentation" src="https://img.shields.io/badge/dev-docs-yellow"></a>
1515
</p>
1616

17-
A Python framework to build Slack apps in a flash with the latest platform features. Read the [getting started guide](https://tools.slack.dev/bolt-python/getting-started) and look at our [code examples](https://github.com/slackapi/bolt-python/tree/main/examples) to learn how to build apps using Bolt. The Python module documents are available [here](https://tools.slack.dev/bolt-python/api-docs/slack_bolt/).
17+
A Python framework to build Slack apps in a flash with the latest platform features. Read the [getting started guide](https://tools.slack.dev/bolt-python/getting-started) and look at our [code examples](https://github.com/slackapi/bolt-python/tree/main/examples) to learn how to build apps using Bolt. The Python module documents are available [here](https://tools.slack.dev/bolt-python/reference/).
1818

1919
## Setup
2020

@@ -192,7 +192,7 @@ Apps can be run the same way as the syncronous example above. If you'd prefer an
192192

193193
## Getting Help
194194

195-
[The documentation](https://tools.slack.dev/bolt-python) has more information on basic and advanced concepts for Bolt for Python. Also, all the Python module documents of this library are available [here](https://tools.slack.dev/bolt-python/api-docs/slack_bolt/).
195+
[The documentation](https://tools.slack.dev/bolt-python) has more information on basic and advanced concepts for Bolt for Python. Also, all the Python module documents of this library are available [here](https://tools.slack.dev/bolt-python/reference/).
196196

197197
If you otherwise get stuck, we're here to help. The following are the best ways to get assistance working through your issue:
198198

docs/english/building-an-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ app = App(token=os.environ.get("SLACK_BOT_TOKEN"))
208208

209209
# Listens to incoming messages that contain "hello"
210210
# To learn available listener arguments,
211-
# visit https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html
211+
# visit https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html
212212
@app.message("hello")
213213
def message_hello(message, say):
214214
# say() sends a message to the channel where the event was triggered
@@ -234,7 +234,7 @@ app = App(
234234

235235
# Listens to incoming messages that contain "hello"
236236
# To learn available listener arguments,
237-
# visit https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html
237+
# visit https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html
238238
@app.message("hello")
239239
def message_hello(message, say):
240240
# say() sends a message to the channel where the event was triggered

docs/english/concepts/acknowledge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ We recommend calling `ack()` right away before initiating any time-consuming pro
1414

1515
:::
1616

17-
Refer to [the module document](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html) to learn the available listener arguments.
17+
Refer to [the module document](https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html) to learn the available listener arguments.
1818
```python
1919
# Example of responding to an external_select options request
2020
@app.options("menu_selection")

docs/english/concepts/actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Actions can be filtered on an `action_id` parameter of type `str` or `re.Pattern
1212

1313
You'll notice in all `action()` examples, `ack()` is used. It is required to call the `ack()` function within an action listener to acknowledge that the request was received from Slack. This is discussed in the [acknowledging requests guide](/bolt-python/concepts/acknowledge).
1414

15-
Refer to [the module document](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html) to learn the available listener arguments.
15+
Refer to [the module document](https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html) to learn the available listener arguments.
1616

1717
```python
1818
# Your listener will be called every time a block element with the action_id "approve_button" is triggered
@@ -49,7 +49,7 @@ There are two main ways to respond to actions. The first (and most common) way i
4949

5050
The second way to respond to actions is using `respond()`, which is a utility to use the `response_url` associated with the action.
5151

52-
Refer to [the module document](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html) to learn the available listener arguments.
52+
Refer to [the module document](https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html) to learn the available listener arguments.
5353

5454
```python
5555
# Your listener will be called every time an interactive component with the action_id “approve_button” is triggered

docs/english/concepts/ai-apps.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ While the `assistant_thread_started` and `assistant_thread_context_changed` even
105105

106106
If you do provide your own `threadContextStore` property, it must feature `get` and `save` methods.
107107

108-
:::tip[Refer to the [module document](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html) to learn the available listener arguments.]
108+
:::tip[Refer to the [module document](https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html) to learn the available listener arguments.]
109109
:::
110110

111111
## Handling a new thread {#handling-a-new-thread}
@@ -264,9 +264,9 @@ When the user messages your app, the [`message.im`](/reference/events/message.im
264264
Messages sent to the app do not contain a [subtype](/reference/events/message#subtypes) and must be deduced based on their shape and any provided [message metadata](/messaging/message-metadata/).
265265

266266
There are three utilities that are particularly useful in curating the user experience:
267-
* [`say`](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/#slack_bolt.Say)
268-
* [`setTitle`](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/#slack_bolt.SetTitle)
269-
* [`setStatus`](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/#slack_bolt.SetStatus)
267+
* [`say`](https://docs.slack.dev/bolt-python/reference/#slack_bolt.Say)
268+
* [`setTitle`](https://docs.slack.dev/bolt-python/reference/#slack_bolt.SetTitle)
269+
* [`setStatus`](https://docs.slack.dev/bolt-python/reference/#slack_bolt.SetStatus)
270270

271271
```python
272272
...

docs/english/concepts/app-home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /bolt-python/concepts/app-home
88

99
You can subscribe to the [`app_home_opened`](/reference/events/app_home_opened) event to listen for when users open your App Home.
1010

11-
Refer to [the module document](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html) to learn the available listener arguments.
11+
Refer to [the module document](https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html) to learn the available listener arguments.
1212
```python
1313
@app.event("app_home_opened")
1414
def update_home_tab(client, event, logger):

docs/english/concepts/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ There are two ways to respond to slash commands. The first way is to use `say()`
1212

1313
When setting up commands within your app configuration, you'll append `/slack/events` to your request URL.
1414

15-
Refer to [the module document](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html) to learn the available listener arguments.
15+
Refer to [the module document](https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html) to learn the available listener arguments.
1616
```python
1717
# The echo command simply echoes on command
1818
@app.command("/echo")

docs/english/concepts/custom-steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Your app can use the `function()` method to listen to incoming [custom step requ
1212

1313
You can reference your custom step's inputs using the `inputs` listener argument of type `dict`.
1414

15-
Refer to [the module document](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html) to learn about the available listener arguments.
15+
Refer to [the module document](https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html) to learn about the available listener arguments.
1616

1717
```python
1818
# This sample custom step formats an input and outputs it

docs/english/concepts/event-listening.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can listen to [any Events API event](/reference/events) using the `event()`
88

99
The `event()` method requires an `eventType` of type `str`.
1010

11-
Refer to [the module document](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html) to learn the available listener arguments.
11+
Refer to [the module document](https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html) to learn the available listener arguments.
1212
```python
1313
# When a user joins the workspace, send a message in a predefined channel asking them to introduce themselves
1414
@app.event("team_join")

docs/english/concepts/global-middleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Global middleware is run for all incoming requests, before any listener middlewa
88

99
Both global and listener middleware must call `next()` to pass control of the execution chain to the next middleware.
1010

11-
Refer to [the module document](https://docs.slack.dev/bolt-python/api-docs/slack_bolt/kwargs_injection/args.html) to learn the available listener arguments.
11+
Refer to [the module document](https://docs.slack.dev/bolt-python/reference/kwargs_injection/args.html) to learn the available listener arguments.
1212
```python
1313
@app.use
1414
def auth_acme(client, context, logger, payload, next):

0 commit comments

Comments
 (0)