ユーザーグループ一覧・メンバー表示に対応(usergroupsコマンド追加)#12
Merged
Conversation
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.
Summary
Slack のユーザーグループ(
@engineersのようなメンショングループ)を CLI から参照できるようにしました。これまでユーザー・チャンネルの参照コマンドはありましたが、ユーザーグループを扱う手段がなかったため追加しています。slack-cli usergroups list— ワークスペースのユーザーグループ一覧(--include-disabledで無効化済みも表示)slack-cli usergroups members --id S123/--handle @engineers— グループのメンバー一覧(ユーザー名を解決して表示)実装は既存の
users/membersコマンドのパターン(UsergroupOperationsの切り出し、withSlackClient+renderByFormat、createMembersFormatterの再利用、ターミナルサニタイズ)に揃えています。利用にはusergroups:readスコープが必要です(README に追記済み)。Type of change
Test plan
npm run checkpassesnpm run buildpassesnpm testpassesChecklist
package.jsonversion bumped per semver (patch/minor/major) — 新機能のため minor(0.23.0 → 0.24.0)CHANGELOG.mdupdated with a new entry — fork 以降は GitHub Releases 管理のため更新していません