@@ -4,8 +4,6 @@ import { runBranchesAll, runBranchesDefault, runBranchesUpdateDefault } from './
44import { runFeatureFlagsGet , runFeatureFlagsUpdate } from './feature-flags.js' ;
55import { runAnalysisFeatureFlagsGet , runAnalysisFeatureFlagsUpdate } from './analysis-feature-flags.js' ;
66import { runPrInstructionsGet , runPrInstructionsSave , runPrInstructionsEdit , runPrInstructionsDelete } from './pr-instructions.js' ;
7- import { runSlackChannels , runSlackChannelGet } from './slack.js' ;
8- import { runTeamsChannels , runTeamsChannelGet } from './teams.js' ;
97import { runRecurringScanslist , runRecurringScansCreate , runRecurringScansUpdate } from './recurring-scans.js' ;
108import { runSprintReportsList , runSprintReportsCreate , runSprintReportsUpdate } from './sprint-reports.js' ;
119import { runCveReportingList , runCveReportingCreate , runCveReportingUpdate } from './cve-reporting.js' ;
@@ -163,30 +161,6 @@ export default function registerSettingsCommands(program, { runCmd }) {
163161 instructionId : opts . instructionId ,
164162 } ) ) ) ;
165163
166- // ── slack channels ─────────────────────────────────────────────────────────
167- settings
168- . command ( 'slack-channels' )
169- . description ( 'List all available Slack channels' )
170- . action ( ( ) => runCmd ( ( ) => runSlackChannels ( ) ) ) ;
171-
172- // ── slack channel get ──────────────────────────────────────────────────────
173- settings
174- . command ( 'slack-channel-get' )
175- . description ( 'Get saved Slack channel configuration' )
176- . action ( ( ) => runCmd ( ( ) => runSlackChannelGet ( ) ) ) ;
177-
178- // ── teams channels ─────────────────────────────────────────────────────────
179- settings
180- . command ( 'teams-channels' )
181- . description ( 'List all available Microsoft Teams channels' )
182- . action ( ( ) => runCmd ( ( ) => runTeamsChannels ( ) ) ) ;
183-
184- // ── teams channel get ──────────────────────────────────────────────────────
185- settings
186- . command ( 'teams-channel-get' )
187- . description ( 'Get saved Microsoft Teams channel configuration' )
188- . action ( ( ) => runCmd ( ( ) => runTeamsChannelGet ( ) ) ) ;
189-
190164 // ── recurring-scans list ───────────────────────────────────────────────────
191165 settings
192166 . command ( 'recurring-scans-list' )
0 commit comments