File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
oauth/installation_store/sqlalchemy Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff 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 "> """Check the latest version at https://pypi.org/project/slack-sdk/"""
31- __version__ = "3.21.1 "</ code > </ pre >
31+ __version__ = "3.21.2 "</ code > </ pre >
3232</ details >
3333</ section >
3434< section >
Original file line number Diff line number Diff line change 11"""Check the latest version at https://pypi.org/project/slack-sdk/"""
2- __version__ = "3.21.1 "
2+ __version__ = "3.21.2 "
You can’t perform that action at this time.
0 commit comments