feat: add App Home step to Slack guide, default groupPolicy to mention

This commit is contained in:
Re-bin
2026-02-09 16:49:13 +00:00
parent 4f928e9d2a
commit ec4340d0d8
2 changed files with 18 additions and 11 deletions

View File

@@ -92,7 +92,7 @@ class SlackConfig(BaseModel):
bot_token: str = "" # xoxb-...
app_token: str = "" # xapp-...
user_token_read_only: bool = True
group_policy: str = "open" # "open", "mention", "allowlist"
group_policy: str = "mention" # "mention", "open", "allowlist"
group_allow_from: list[str] = Field(default_factory=list) # Allowed channel IDs if allowlist
dm: SlackDMConfig = Field(default_factory=SlackDMConfig)