MCPcopy Create free account
hub / github.com/Flagsmith/flagsmith / join_channel

Method join_channel

api/integrations/slack/slack.py:41–45  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

39 return oauth_response.get("access_token") # type: ignore[no-untyped-call,no-any-return]
40
41 def join_channel(self): # type: ignore[no-untyped-def]
42 try:
43 self._client.conversations_join(channel=self.channel_id)
44 except SlackApiError as e:
45 raise SlackChannelJoinError(e.response.get("error")) from e
46
47 def get_channels_data(self, **kwargs) -> ChannelsDataResponse: # type: ignore[no-untyped-def]
48 """

Calls 2

getMethod · 0.45