Skip to content

Commit 47801c8

Browse files
committed
version 1.11.4
1 parent 7fa4e88 commit 47801c8

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

docs/api-docs/slack_bolt/authorization/async_authorize.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,10 @@ <h1 class="title">Module <code>slack_bolt.authorization.async_authorize</code></
222222

223223
if latest_installation.user_id != user_id:
224224
# First off, remove the user token as the installer is a different user
225+
user_token = None
225226
latest_installation.user_token = None
227+
latest_installation.user_refresh_token = None
228+
latest_installation.user_token_expires_at = None
226229
latest_installation.user_scopes = []
227230

228231
# try to fetch the request user&#39;s installation
@@ -594,7 +597,10 @@ <h3>Ancestors</h3>
594597

595598
if latest_installation.user_id != user_id:
596599
# First off, remove the user token as the installer is a different user
600+
user_token = None
597601
latest_installation.user_token = None
602+
latest_installation.user_refresh_token = None
603+
latest_installation.user_token_expires_at = None
598604
latest_installation.user_scopes = []
599605

600606
# try to fetch the request user&#39;s installation

docs/api-docs/slack_bolt/authorization/authorize.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,10 @@ <h1 class="title">Module <code>slack_bolt.authorization.authorize</code></h1>
222222

223223
if latest_installation.user_id != user_id:
224224
# First off, remove the user token as the installer is a different user
225+
user_token = None
225226
latest_installation.user_token = None
227+
latest_installation.user_refresh_token = None
228+
latest_installation.user_token_expires_at = None
226229
latest_installation.user_scopes = []
227230

228231
# try to fetch the request user&#39;s installation
@@ -593,7 +596,10 @@ <h3>Ancestors</h3>
593596

594597
if latest_installation.user_id != user_id:
595598
# First off, remove the user token as the installer is a different user
599+
user_token = None
596600
latest_installation.user_token = None
601+
latest_installation.user_refresh_token = None
602+
latest_installation.user_token_expires_at = None
597603
latest_installation.user_scopes = []
598604

599605
# try to fetch the request user&#39;s installation

docs/api-docs/slack_bolt/version.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_bolt.version</code></h1>
2828
<span>Expand source code</span>
2929
</summary>
3030
<pre><code class="python">&#34;&#34;&#34;Check the latest version at https://pypi.org/project/slack-bolt/&#34;&#34;&#34;
31-
__version__ = &#34;1.11.3&#34;</code></pre>
31+
__version__ = &#34;1.11.4&#34;</code></pre>
3232
</details>
3333
</section>
3434
<section>

slack_bolt/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Check the latest version at https://pypi.org/project/slack-bolt/"""
2-
__version__ = "1.11.3"
2+
__version__ = "1.11.4"

0 commit comments

Comments
 (0)