Skip to content

Commit 03d4add

Browse files
authored
docs: fixing broken links (#1532)
1 parent 76338bf commit 03d4add

12 files changed

Lines changed: 26 additions & 26 deletions

File tree

docs/english/concepts/adding-agent-features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The code snippets throughout this guide are from our [Support Agent sample app](
1010
View our [agent quickstart](/ai/agent-quickstart) to get up and running with Casey. Otherwise, read on for exploration and explanation of agent-focused Bolt features found within Casey.
1111
:::
1212

13-
Your agent can utilize features applicable to messages throughout Slack, like [chat streaming](#text-streaming) and [feedback buttons](#adding-and-handling-feedback). They can also [utilize the `Assistant` class](/tools/bolt-python/concepts/assistant-class) for a side-panel view designed with AI in mind.
13+
Your agent can utilize features applicable to messages throughout Slack, like [chat streaming](#text-streaming) and [feedback buttons](#adding-and-handling-feedback). They can also [utilize the `Assistant` class](/tools/bolt-python/concepts/using-the-assistant-class) for a side-panel view designed with AI in mind.
1414

1515
If you're unfamiliar with using these feature within Slack, you may want to read the [API docs on the subject](/ai/). Then come back here to implement them with Bolt!
1616

@@ -204,7 +204,7 @@ def handle_message(
204204
<TabItem value="assistant" label = "Assistant thread">
205205

206206
:::tip[Using the Assistant side panel]
207-
The Assistant side panel requires additional setup. See the [Assistant class guide](/tools/bolt-python/concepts/assistant-class).
207+
The Assistant side panel requires additional setup. See the [Assistant class guide](/tools/bolt-python/concepts/using-the-assistant-class).
208208
:::
209209

210210

docs/english/creating-an-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ We're going to use bot and app-level tokens for this guide.
5555

5656
:::tip[Not sharing is sometimes caring]
5757

58-
Treat your tokens like passwords and [keep them safe](/security). Your app uses tokens to post and retrieve information from Slack workspaces.
58+
Treat your tokens like passwords and [keep them safe](/concepts/security). Your app uses tokens to post and retrieve information from Slack workspaces.
5959

6060
:::
6161

@@ -103,7 +103,7 @@ $ export SLACK_APP_TOKEN=<your-app-level-token>
103103

104104
:::warning[Keep it secret. Keep it safe.]
105105

106-
Remember to keep your tokens secure. At a minimum, you should avoid checking them into public version control, and access them via environment variables as we've done above. Check out the API documentation for more on [best practices for app security](/security).
106+
Remember to keep your tokens secure. At a minimum, you should avoid checking them into public version control, and access them via environment variables as we've done above. Check out the API documentation for more on [best practices for app security](/concepts/security).
107107

108108
:::
109109

docs/english/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ When complete, you'll have a local environment configured with a customized [app
1212

1313
:::tip[Reference for readers]
1414

15-
In search of the complete guide to building an app from scratch? Check out the [building an app](/tools/bolt-python/building-an-app) guide.
15+
In search of the complete guide to building an app from scratch? Check out the [building an app](/tools/bolt-python/creating-an-app) guide.
1616

1717
:::
1818

@@ -147,7 +147,7 @@ The above command works on Linux and macOS but [similar commands are available o
147147

148148
:::warning[Keep it secret. Keep it safe.]
149149

150-
Treat your tokens like a password and [keep it safe](/security). Your app uses these to retrieve and send information to Slack.
150+
Treat your tokens like a password and [keep it safe](/concepts/security). Your app uses these to retrieve and send information to Slack.
151151

152152
:::
153153

docs/japanese/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Slack アプリで使用できるトークンには、ユーザートークン
4848

4949
6. 左サイドメニューの「**Socket Mode**」を有効にします。
5050

51-
:::tip[トークンはパスワードと同様に取り扱い、[安全な方法で保管してください](/security)。アプリはこのトークンを使って Slack ワークスペースで投稿をしたり、情報の取得をしたりします。]
51+
:::tip[トークンはパスワードと同様に取り扱い、[安全な方法で保管してください](/concepts/security)。アプリはこのトークンを使って Slack ワークスペースで投稿をしたり、情報の取得をしたりします。]
5252

5353
:::
5454

@@ -91,7 +91,7 @@ export SLACK_APP_TOKEN=<アプリレベルトークン>
9191
```
9292
:::warning[🔒 全てのトークンは安全に保管してください。]
9393

94-
少なくともパブリックなバージョン管理にチェックインするようなことは避けるべきでしょう。また、上にあった例のように環境変数を介してアクセスするようにしてください。詳細な情報は [アプリのセキュリティのベストプラクティス](/security)のドキュメントを参照してください。
94+
少なくともパブリックなバージョン管理にチェックインするようなことは避けるべきでしょう。また、上にあった例のように環境変数を介してアクセスするようにしてください。詳細な情報は [アプリのセキュリティのベストプラクティス](/concepts/security)のドキュメントを参照してください。
9595

9696
:::
9797

docs/reference/app/app.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
118118
if __name__ == &#34;__main__&#34;:
119119
app.start(port=int(os.environ.get(&#34;PORT&#34;, 3000)))
120120

121-
Refer to https://docs.slack.dev/tools/bolt-python/building-an-app for details.
121+
Refer to https://docs.slack.dev/tools/bolt-python/creating-an-app for details.
122122

123123
If you would like to build an OAuth app for enabling the app to run with multiple workspaces,
124124
refer to https://docs.slack.dev/tools/bolt-python/concepts/authenticating-oauth to learn how to configure the app.
@@ -1438,7 +1438,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
14381438
if __name__ == "__main__":
14391439
app.start(port=int(os.environ.get("PORT", 3000)))
14401440
</code></pre>
1441-
<p>Refer to <a href="https://docs.slack.dev/tools/bolt-python/building-an-app">https://docs.slack.dev/tools/bolt-python/building-an-app</a> for details.</p>
1441+
<p>Refer to <a href="https://docs.slack.dev/tools/bolt-python/creating-an-app">https://docs.slack.dev/tools/bolt-python/creating-an-app</a> for details.</p>
14421442
<p>If you would like to build an OAuth app for enabling the app to run with multiple workspaces,
14431443
refer to <a href="https://docs.slack.dev/tools/bolt-python/concepts/authenticating-oauth">https://docs.slack.dev/tools/bolt-python/concepts/authenticating-oauth</a> to learn how to configure the app.</p>
14441444
<h2 id="args">Args</h2>

docs/reference/app/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
137137
if __name__ == &#34;__main__&#34;:
138138
app.start(port=int(os.environ.get(&#34;PORT&#34;, 3000)))
139139

140-
Refer to https://docs.slack.dev/tools/bolt-python/building-an-app for details.
140+
Refer to https://docs.slack.dev/tools/bolt-python/creating-an-app for details.
141141

142142
If you would like to build an OAuth app for enabling the app to run with multiple workspaces,
143143
refer to https://docs.slack.dev/tools/bolt-python/concepts/authenticating-oauth to learn how to configure the app.
@@ -1457,7 +1457,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
14571457
if __name__ == "__main__":
14581458
app.start(port=int(os.environ.get("PORT", 3000)))
14591459
</code></pre>
1460-
<p>Refer to <a href="https://docs.slack.dev/tools/bolt-python/building-an-app">https://docs.slack.dev/tools/bolt-python/building-an-app</a> for details.</p>
1460+
<p>Refer to <a href="https://docs.slack.dev/tools/bolt-python/creating-an-app">https://docs.slack.dev/tools/bolt-python/creating-an-app</a> for details.</p>
14611461
<p>If you would like to build an OAuth app for enabling the app to run with multiple workspaces,
14621462
refer to <a href="https://docs.slack.dev/tools/bolt-python/concepts/authenticating-oauth">https://docs.slack.dev/tools/bolt-python/concepts/authenticating-oauth</a> to learn how to configure the app.</p>
14631463
<h2 id="args">Args</h2>

docs/reference/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<h1 class="title">Package <code>slack_bolt</code></h1>
3737
</header>
3838
<section id="section-intro">
39-
<p>A Python framework to build Slack apps in a flash with the latest platform features.Read the <a href="https://docs.slack.dev/tools/bolt-python/building-an-app">getting started guide</a> and look at our <a href="https://github.com/slackapi/bolt-python/tree/main/examples">code examples</a> to learn how to build apps using Bolt.</p>
39+
<p>A Python framework to build Slack apps in a flash with the latest platform features.Read the <a href="https://docs.slack.dev/tools/bolt-python/creating-an-app">getting started guide</a> and look at our <a href="https://github.com/slackapi/bolt-python/tree/main/examples">code examples</a> to learn how to build apps using Bolt.</p>
4040
<ul>
4141
<li>Website: <a href="https://docs.slack.dev/tools/bolt-python/">https://docs.slack.dev/tools/bolt-python/</a></li>
4242
<li>GitHub repository: <a href="https://github.com/slackapi/bolt-python">https://github.com/slackapi/bolt-python</a></li>
@@ -258,7 +258,7 @@ <h3>Class variables</h3>
258258
if __name__ == &#34;__main__&#34;:
259259
app.start(port=int(os.environ.get(&#34;PORT&#34;, 3000)))
260260

261-
Refer to https://docs.slack.dev/tools/bolt-python/building-an-app for details.
261+
Refer to https://docs.slack.dev/tools/bolt-python/creating-an-app for details.
262262

263263
If you would like to build an OAuth app for enabling the app to run with multiple workspaces,
264264
refer to https://docs.slack.dev/tools/bolt-python/concepts/authenticating-oauth to learn how to configure the app.
@@ -1578,7 +1578,7 @@ <h3>Class variables</h3>
15781578
if __name__ == "__main__":
15791579
app.start(port=int(os.environ.get("PORT", 3000)))
15801580
</code></pre>
1581-
<p>Refer to <a href="https://docs.slack.dev/tools/bolt-python/building-an-app">https://docs.slack.dev/tools/bolt-python/building-an-app</a> for details.</p>
1581+
<p>Refer to <a href="https://docs.slack.dev/tools/bolt-python/creating-an-app">https://docs.slack.dev/tools/bolt-python/creating-an-app</a> for details.</p>
15821582
<p>If you would like to build an OAuth app for enabling the app to run with multiple workspaces,
15831583
refer to <a href="https://docs.slack.dev/tools/bolt-python/concepts/authenticating-oauth">https://docs.slack.dev/tools/bolt-python/concepts/authenticating-oauth</a> to learn how to configure the app.</p>
15841584
<h2 id="args">Args</h2>

examples/aws_lambda/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ Instructions on how to set up and deploy each example are provided below.
3333
- Optionally enter a description for the role, such as "Bolt Python basic
3434
role"
3535
3. Ensure you have created an app on api.slack.com/apps as per the
36-
[Building an App](https://docs.slack.dev/tools/bolt-python/building-an-app) guide.
36+
[Building an App](https://docs.slack.dev/tools/bolt-python/creating-an-app) guide.
3737
Ensure you have installed it to a workspace.
3838
4. Ensure you have exported your Slack Bot Token and Slack Signing Secret for your
3939
apps as the environment variables `SLACK_BOT_TOKEN` and
4040
`SLACK_SIGNING_SECRET`, respectively, as per the
41-
[Building an App](https://docs.slack.dev/tools/bolt-python/building-an-app) guide.
41+
[Building an App](https://docs.slack.dev/tools/bolt-python/creating-an-app) guide.
4242
5. You may want to create a dedicated virtual environment for this example app, as
4343
per the "Setting up your project" section of the
44-
[Building an App](https://docs.slack.dev/tools/bolt-python/building-an-app) guide.
44+
[Building an App](https://docs.slack.dev/tools/bolt-python/creating-an-app) guide.
4545
6. Let's deploy the Lambda! Run `./deploy_lazy.sh`. By default it deploys to the
4646
us-east-1 region in AWS - you can change this at the top of `lazy_aws_lambda_config.yaml` if you wish.
4747
7. Load up AWS Lambda inside the AWS Console - make sure you are in the correct
@@ -150,7 +150,7 @@ Let’s create a user role that will use the custom policy we created as well as
150150
3. "Create Role"
151151

152152
### Create Slack App and Load your Lambda to AWS
153-
Ensure you have created an app on [api.slack.com/apps](https://api.slack.com/apps) as per the [Building an App](https://docs.slack.dev/tools/bolt-python/building-an-app) guide. You do not need to ensure you have installed it to a workspace, as the OAuth flow will provide your app the ability to be installed by anyone.
153+
Ensure you have created an app on [api.slack.com/apps](https://api.slack.com/apps) as per the [Building an App](https://docs.slack.dev/tools/bolt-python/creating-an-app) guide. You do not need to ensure you have installed it to a workspace, as the OAuth flow will provide your app the ability to be installed by anyone.
154154

155155
1. Remember those S3 buckets we made? You will need the names of these buckets again in the next step.
156156
2. You need many environment variables exported! Specifically the following from api.slack.com/apps

examples/django/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This example demonstrates how you can use Bolt for Python in your Django applica
44

55
### `simple_app` - Single-workspace App Example
66

7-
If you want to run a simple app like the one you've tried in the [Building an App](https://docs.slack.dev/tools/bolt-python/building-an-app) guide, this is the right one for you. By default, this Django project runs this application. If you want to switch to OAuth flow supported one, modify `myslackapp/urls.py`.
7+
If you want to run a simple app like the one you've tried in the [Building an App](https://docs.slack.dev/tools/bolt-python/creating-an-app) guide, this is the right one for you. By default, this Django project runs this application. If you want to switch to OAuth flow supported one, modify `myslackapp/urls.py`.
88

99
To run this app, all you need to do are:
1010

@@ -31,7 +31,7 @@ python manage.py migrate
3131
python manage.py runserver 0.0.0.0:3000
3232
```
3333

34-
As you did at [Building an App](https://docs.slack.dev/tools/bolt-python/building-an-app) guide, configure ngrok or something similar to serve a public endpoint. Lastly,
34+
As you did at [Building an App](https://docs.slack.dev/tools/bolt-python/creating-an-app) guide, configure ngrok or something similar to serve a public endpoint. Lastly,
3535

3636
* Go back to the Slack app configuration page
3737
* Go to "Event Subscriptions"
@@ -73,7 +73,7 @@ python manage.py migrate
7373
python manage.py runserver 0.0.0.0:3000
7474
```
7575

76-
As you did at [Building an App](https://docs.slack.dev/tools/bolt-python/building-an-app) guide, configure ngrok or something similar to serve a public endpoint. Lastly,
76+
As you did at [Building an App](https://docs.slack.dev/tools/bolt-python/creating-an-app) guide, configure ngrok or something similar to serve a public endpoint. Lastly,
7777

7878
* Go back to the Slack app configuration page
7979
* Go to "Event Subscriptions"

examples/getting_started/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ ngrok http 3000
4242
python3 app.py
4343
```
4444

45-
[1]: https://docs.slack.dev/tools/bolt-python/building-an-app
45+
[1]: https://docs.slack.dev/tools/bolt-python/creating-an-app
4646
[2]: https://docs.slack.dev/tools/bolt-python/
47-
[3]: https://docs.slack.dev/tools/bolt-python/building-an-app#setting-up-events
47+
[3]: https://docs.slack.dev/tools/bolt-python/creating-an-app#setting-up-events

0 commit comments

Comments
 (0)