Unarchives a channel.
(
self,
*,
channel: str,
**kwargs,
)
| 2630 | return self.api_call("channels.setTopic", json=kwargs) |
| 2631 | |
| 2632 | def channels_unarchive( |
| 2633 | self, |
| 2634 | *, |
| 2635 | channel: str, |
| 2636 | **kwargs, |
| 2637 | ) -> SlackResponse: |
| 2638 | """Unarchives a channel.""" |
| 2639 | kwargs.update({"channel": channel}) |
| 2640 | kwargs = _remove_none_values(kwargs) |
| 2641 | return self.api_call("channels.unarchive", json=kwargs) |
| 2642 | |
| 2643 | # -------------------------- |
| 2644 |
nothing calls this directly
no test coverage detected