feat: add Slack channel support

This commit is contained in:
Kamal
2026-02-04 23:26:20 +05:30
parent 795f8105a0
commit 051e396a8a
6 changed files with 249 additions and 1 deletions

View File

@@ -379,6 +379,15 @@ def channels_status():
tg_config
)
# Slack
slack = config.channels.slack
slack_config = "socket" if slack.app_token and slack.bot_token else "[dim]not configured[/dim]"
table.add_row(
"Slack",
"" if slack.enabled else "",
slack_config
)
console.print(table)