fix(Slack Node): Add 'search:read' scope to Slack OAuth2 credentials to support searching messages (#19229)

Co-authored-by: Roman Davydchuk <roman.davydchuk@n8n.io>
This commit is contained in:
Jaakko Husso
2025-09-12 12:45:49 +03:00
committed by GitHub
parent af6da1027e
commit a13961179f

View File

@@ -19,6 +19,7 @@ const userScopes = [
'users.profile:read',
'users.profile:write',
'users:read',
'search:read',
];
export class SlackOAuth2Api implements ICredentialType {