fix: remove Author display and users:read scope from Slack sharing#187
Merged
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom Dec 1, 2025
fix/remove-slack-author-and-users-read-scopebreaking-brake/cc-wf-studio:fix/remove-slack-author-and-users-read-scopeCopy head branch name to clipboard
Merged
fix: remove Author display and users:read scope from Slack sharing#187breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom fix/remove-slack-author-and-users-read-scopebreaking-brake/cc-wf-studio:fix/remove-slack-author-and-users-read-scopeCopy head branch name to clipboard
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom
fix/remove-slack-author-and-users-read-scopebreaking-brake/cc-wf-studio:fix/remove-slack-author-and-users-read-scopeCopy head branch name to clipboard
Conversation
- Remove users:read scope from OAuth (no longer needed with User Token) - Remove getUserInfo() method from SlackApiService - Remove Author and Date display from Slack message blocks - Remove Note about workspace from import links 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This was referenced Dec 1, 2025
Merged
github-actions Bot
added a commit
that referenced
this pull request
Dec 1, 2025
## [2.17.3](v2.17.2...v2.17.3) (2025-12-01) ### Bug Fixes * remove Author display and users:read scope from Slack sharing ([#187](#187)) ([17aaa83](17aaa83)) * remove Bot Token required check from manual connection ([#189](#189)) ([18c00d7](18c00d7)) * update Slack App setup instructions for User Token only ([#188](#188)) ([a8e4463](a8e4463))
Contributor
|
🎉 This PR is included in version 2.17.3 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
After migrating to User Token, the Slack message poster is automatically the logged-in user, making the explicit Author display redundant.
Current Behavior
Author: @usernameandDate: 2025/12/1users:readscopeExpected Behavior
Solution
Remove features that became unnecessary after User Token migration:
users:readscope from OAuthgetUserInfo()method from SlackApiServiceChanges
File:
src/extension/services/slack-oauth-service.tsusers:readfrom userScopesFile:
src/extension/services/slack-api-service.tsgetUserInfo()method entirelyFile:
src/extension/commands/slack-share-workflow.tscreatedAtrelated codeFile:
src/extension/utils/slack-message-builder.tsauthorName,authorUserId,createdAtfields from interfaceImpact
Testing
npm run format && npm run lint && npm run check)npm run build)🤖 Generated with Claude Code