fix(slack): enable writable app home DMs in manifest

This commit is contained in:
dante 2026-05-06 11:25:38 +09:00 committed by Teknium
parent 8e4f3ba4da
commit 24d3216175
2 changed files with 36 additions and 0 deletions

View file

@ -48,6 +48,11 @@ def _build_full_manifest(bot_name: str, bot_description: str) -> dict:
"background_color": "#1a1a2e",
},
"features": {
"app_home": {
"home_tab_enabled": False,
"messages_tab_enabled": True,
"messages_tab_read_only_enabled": False,
},
"bot_user": {
"display_name": bot_name[:80],
"always_online": True,
@ -69,6 +74,7 @@ def _build_full_manifest(bot_name: str, bot_description: str) -> dict:
"files:read",
"files:write",
"groups:history",
"groups:read",
"im:history",
"im:read",
"im:write",