Skip to content

Commit

Permalink
🧹 remove Worfklow tester view
Browse files Browse the repository at this point in the history
  • Loading branch information
yannick-beot-sp committed Sep 20, 2024
1 parent f58a65f commit 858577f
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 254 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ This changelog is following the recommended format by [keepachangelog](https://k

### Removed

- Removed Workflow Tester view due to webview-ui-toolkit deprecation (cf. https://github.com/microsoft/vscode-webview-ui-toolkit/issues/561)

## [1.3.2] - 2024-07-03

### Added
Expand Down
5 changes: 0 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,6 @@
"id": "vscode-sailpoint-identitynow.view",
"name": "Identity Security Cloud Tenants",
"icon": "resources/isc.svg"
},
{
"id": "vscode-sailpoint-identitynow.workflow.test-view",
"type": "webview",
"name": "Workflow tester"
}
]
},
Expand Down
1 change: 0 additions & 1 deletion src/commands/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export const SORT_IDENTITY_PROFILES_BY_NAME = `${COMMAND_PREFIX}.identity-profil
export const SORT_IDENTITY_PROFILES_BY_PRIORITY = `${COMMAND_PREFIX}.identity-profiles.sort.priority`;
export const REFRESH_IDENTITY_PROFILE = `${COMMAND_PREFIX}.identity-profile.refresh`;
export const TREE_VIEW = `${COMMAND_PREFIX}.view`;
export const WORKFLOW_TESTER_VIEW = `${COMMAND_PREFIX}.workflow.test-view`;

export const LOAD_MORE = `${COMMAND_PREFIX}.load-more`;

Expand Down
23 changes: 0 additions & 23 deletions src/commands/workflow/testWorkflow.ts

This file was deleted.

9 changes: 0 additions & 9 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ import { TransformEvaluator } from './services/TransformEvaluator';
import { TreeManager } from './services/TreeManager';
import { ISCUriHandler } from './ISCUriHandler';
import { ISCDataProvider } from './views/ISCDataProvider';
import { WorkflowTesterWebviewViewProvider } from './views/WorkflowTesterWebviewViewProvider';
import { TestConnectionCommand } from './commands/source/TestConnectionCommand';
import { PeekSourceCommand } from './commands/source/PeekSourceCommand';
import { PingClusterCommand } from './commands/source/PingClusterCommand';
Expand Down Expand Up @@ -338,14 +337,6 @@ export function activate(context: vscode.ExtensionContext) {
vscode.commands.registerCommand(commands.NEW_SCHEMA,
newSchemaCommand.execute, newSchemaCommand));

const workflowTester = new WorkflowTesterWebviewViewProvider(context, tenantService);
workflowTester.activate();

const testWorkflowCommand = new TestWorkflowCommand(workflowTester);
context.subscriptions.push(
vscode.commands.registerCommand(commands.TEST_WORKFLOW,
testWorkflowCommand.execute, testWorkflowCommand));

const newConnectorRuleCommand = new ConnectorRuleCommand(tenantService);

context.subscriptions.push(
Expand Down
216 changes: 0 additions & 216 deletions src/views/WorkflowTesterWebviewViewProvider.ts

This file was deleted.

0 comments on commit 858577f

Please sign in to comment.