Skip to content

Commit f37c691

Browse files
committed
version 3.21.2
1 parent 9d9dce0 commit f37c691

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

docs/api-docs/slack_sdk/oauth/installation_store/sqlalchemy/index.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,11 @@ <h1 class="title">Module <code>slack_sdk.oauth.installation_store.sqlalchemy</co
275275
team_id = None
276276

277277
c = self.installations.c
278-
where_clause = and_(c.enterprise_id == enterprise_id, c.team_id == team_id)
278+
where_clause = and_(
279+
c.client_id == self.client_id,
280+
c.enterprise_id == enterprise_id,
281+
c.team_id == team_id,
282+
)
279283
if user_id is not None:
280284
where_clause = and_(
281285
c.client_id == self.client_id,
@@ -646,7 +650,11 @@ <h2 class="section-title" id="header-classes">Classes</h2>
646650
team_id = None
647651

648652
c = self.installations.c
649-
where_clause = and_(c.enterprise_id == enterprise_id, c.team_id == team_id)
653+
where_clause = and_(
654+
c.client_id == self.client_id,
655+
c.enterprise_id == enterprise_id,
656+
c.team_id == team_id,
657+
)
650658
if user_id is not None:
651659
where_clause = and_(
652660
c.client_id == self.client_id,

docs/api-docs/slack_sdk/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_sdk.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-sdk/&#34;&#34;&#34;
31-
__version__ = &#34;3.21.1&#34;</code></pre>
31+
__version__ = &#34;3.21.2&#34;</code></pre>
3232
</details>
3333
</section>
3434
<section>

slack_sdk/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-sdk/"""
2-
__version__ = "3.21.1"
2+
__version__ = "3.21.2"

0 commit comments

Comments
 (0)