diff --git a/package.json b/package.json index 3b8ac5a..92e195e 100644 --- a/package.json +++ b/package.json @@ -317,8 +317,8 @@ }, { "command": "extension.prophet.command.open.xchange", - "title": "Prophet: Open Xchange", - "description": "Open Xchange" + "title": "Prophet: Open Dev Center Discussion Groups", + "description": "Open Dev Center Discussion Groups" } ], "jsonValidation": [ diff --git a/src/extension.ts b/src/extension.ts index 536cda3..6e80764 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -212,12 +212,12 @@ export function activate(context: ExtensionContext) { context.subscriptions.push( commands.registerCommand('extension.prophet.command.open.documentation', () => { - commands.executeCommand('vscode.open', Uri.parse('https://documentation.demandware.com')); + commands.executeCommand('vscode.open', Uri.parse('https://documentation.b2c.commercecloud.salesforce.com/')); }) ); context.subscriptions.push( commands.registerCommand('extension.prophet.command.open.xchange', () => { - commands.executeCommand('vscode.open', Uri.parse('https://xchange.demandware.com')); + commands.executeCommand('vscode.open', Uri.parse('https://developer.commercecloud.com/s/discussion-groups')); }) );