Skip to content

Commit

Permalink
version 1.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Feb 1, 2022
1 parent 7fa4e88 commit 47801c8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions docs/api-docs/slack_bolt/authorization/async_authorize.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,10 @@ <h1 class="title">Module <code>slack_bolt.authorization.async_authorize</code></

if latest_installation.user_id != user_id:
# First off, remove the user token as the installer is a different user
user_token = None
latest_installation.user_token = None
latest_installation.user_refresh_token = None
latest_installation.user_token_expires_at = None
latest_installation.user_scopes = []

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

if latest_installation.user_id != user_id:
# First off, remove the user token as the installer is a different user
user_token = None
latest_installation.user_token = None
latest_installation.user_refresh_token = None
latest_installation.user_token_expires_at = None
latest_installation.user_scopes = []

# try to fetch the request user&#39;s installation
Expand Down
6 changes: 6 additions & 0 deletions docs/api-docs/slack_bolt/authorization/authorize.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,10 @@ <h1 class="title">Module <code>slack_bolt.authorization.authorize</code></h1>

if latest_installation.user_id != user_id:
# First off, remove the user token as the installer is a different user
user_token = None
latest_installation.user_token = None
latest_installation.user_refresh_token = None
latest_installation.user_token_expires_at = None
latest_installation.user_scopes = []

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

if latest_installation.user_id != user_id:
# First off, remove the user token as the installer is a different user
user_token = None
latest_installation.user_token = None
latest_installation.user_refresh_token = None
latest_installation.user_token_expires_at = None
latest_installation.user_scopes = []

# try to fetch the request user&#39;s installation
Expand Down
2 changes: 1 addition & 1 deletion docs/api-docs/slack_bolt/version.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_bolt.version</code></h1>
<span>Expand source code</span>
</summary>
<pre><code class="python">&#34;&#34;&#34;Check the latest version at https://pypi.org/project/slack-bolt/&#34;&#34;&#34;
__version__ = &#34;1.11.3&#34;</code></pre>
__version__ = &#34;1.11.4&#34;</code></pre>
</details>
</section>
<section>
Expand Down
2 changes: 1 addition & 1 deletion slack_bolt/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Check the latest version at https://pypi.org/project/slack-bolt/"""
__version__ = "1.11.3"
__version__ = "1.11.4"

0 comments on commit 47801c8

Please sign in to comment.