Skip to content

Commit 5b5151f

Browse files
Fix commands
1 parent 74bc026 commit 5b5151f

File tree

66 files changed

+233
-232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+233
-232
lines changed

app/commands/collections/CreateCollectionCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { randomUUID } from "crypto";
66
export default class CreateCollectionCommand {
77
constructor(private readonly context: ExtensionContext) {
88
context.subscriptions.push(
9-
commands.registerCommand('integrationWorkbench.createCollection', this.handle.bind(this))
9+
commands.registerCommand('norasoderlund.integrationworkbench.createCollection', this.handle.bind(this))
1010
);
1111
}
1212

@@ -34,7 +34,7 @@ export default class CreateCollectionCommand {
3434

3535
reference.workbench.save();
3636

37-
commands.executeCommand("integrationWorkbench.refreshWorkbenches");
37+
commands.executeCommand("norasoderlund.integrationworkbench.refreshWorkbenches");
3838
}
3939
});
4040
}

app/commands/collections/DeleteCollectionCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { WorkbenchCollection } from "../../entities/collections/WorkbenchCollect
99
export default class DeleteCollectionCommand {
1010
constructor(private readonly context: ExtensionContext) {
1111
context.subscriptions.push(
12-
commands.registerCommand('integrationWorkbench.deleteCollection', this.handle.bind(this))
12+
commands.registerCommand('norasoderlund.integrationworkbench.deleteCollection', this.handle.bind(this))
1313
);
1414
}
1515

app/commands/collections/EditCollectionDescriptionCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import WorkbenchCollectionTreeItem from "../../views/trees/workbenches/items/Wor
77
export default class EditCollectionDescriptionCommand {
88
constructor(private readonly context: ExtensionContext) {
99
context.subscriptions.push(
10-
commands.registerCommand('integrationWorkbench.editCollectionDescription', this.handle.bind(this))
10+
commands.registerCommand('norasoderlund.integrationworkbench.editCollectionDescription', this.handle.bind(this))
1111
);
1212
}
1313

@@ -34,7 +34,7 @@ export default class EditCollectionDescriptionCommand {
3434

3535
collection.save();
3636

37-
commands.executeCommand("integrationWorkbench.refreshWorkbenches");
37+
commands.executeCommand("norasoderlund.integrationworkbench.refreshWorkbenches");
3838
});
3939
}
4040
}

app/commands/collections/EditCollectionNameCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import WorkbenchCollectionTreeItem from "../../views/trees/workbenches/items/Wor
77
export default class EditCollectionNameCommand {
88
constructor(private readonly context: ExtensionContext) {
99
context.subscriptions.push(
10-
commands.registerCommand('integrationWorkbench.editCollectionName', this.handle.bind(this))
10+
commands.registerCommand('norasoderlund.integrationworkbench.editCollectionName', this.handle.bind(this))
1111
);
1212
}
1313

@@ -39,7 +39,7 @@ export default class EditCollectionNameCommand {
3939
collection.name = value;
4040
collection.save();
4141

42-
commands.executeCommand("integrationWorkbench.refreshWorkbenches");
42+
commands.executeCommand("norasoderlund.integrationworkbench.refreshWorkbenches");
4343
});
4444
}
4545
}

app/commands/collections/RunCollectionCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import WorkbenchCollectionTreeItem from "../../views/trees/workbenches/items/Wor
77
export default class RunCollectionCommand {
88
constructor(private readonly context: ExtensionContext) {
99
context.subscriptions.push(
10-
commands.registerCommand('integrationWorkbench.runCollection', this.handle.bind(this))
10+
commands.registerCommand('norasoderlund.integrationworkbench.runCollection', this.handle.bind(this))
1111
);
1212
}
1313

app/commands/environments/CreateEnvironmentCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import Environment from "../../entities/environments/Environment";
1414
export default class CreateEnvironmentCommand {
1515
constructor(private readonly context: ExtensionContext) {
1616
context.subscriptions.push(
17-
commands.registerCommand('integrationWorkbench.createEnvironment', this.handle.bind(this))
17+
commands.registerCommand('norasoderlund.integrationworkbench.createEnvironment', this.handle.bind(this))
1818
);
1919
}
2020

@@ -67,6 +67,6 @@ export default class CreateEnvironmentCommand {
6767

6868
Environments.loadedEnvironments.push(environment);
6969

70-
commands.executeCommand("integrationWorkbench.refreshEnvironments");
70+
commands.executeCommand("norasoderlund.integrationworkbench.refreshEnvironments");
7171
};
7272
}

app/commands/environments/DeleteEnvironmentCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Environments from "../../instances/Environments";
66
export default class DeleteEnvironmentCommand {
77
constructor(private readonly context: ExtensionContext) {
88
context.subscriptions.push(
9-
commands.registerCommand('integrationWorkbench.deleteEnvironment', this.handle.bind(this))
9+
commands.registerCommand('norasoderlund.integrationworkbench.deleteEnvironment', this.handle.bind(this))
1010
);
1111
}
1212

app/commands/environments/EditEnvironmentDescriptionCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import EnvironmentTreeItem from "../../views/trees/environments/items/Environmen
55
export default class EditEnvironmentDescriptionCommand {
66
constructor(private readonly context: ExtensionContext) {
77
context.subscriptions.push(
8-
commands.registerCommand('integrationWorkbench.editEnvironmentDescription', this.handle.bind(this))
8+
commands.registerCommand('norasoderlund.integrationworkbench.editEnvironmentDescription', this.handle.bind(this))
99
);
1010
}
1111

@@ -27,7 +27,7 @@ export default class EditEnvironmentDescriptionCommand {
2727

2828
environment.save();
2929

30-
commands.executeCommand("integrationWorkbench.refreshEnvironments");
30+
commands.executeCommand("norasoderlund.integrationworkbench.refreshEnvironments");
3131
});
3232
}
3333
}

app/commands/environments/EditEnvironmentNameCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import Environments from "../../instances/Environments";
1616
export default class EditEnvironmentNameCommand {
1717
constructor(private readonly context: ExtensionContext) {
1818
context.subscriptions.push(
19-
commands.registerCommand('integrationWorkbench.editEnvironmentName', this.handle.bind(this))
19+
commands.registerCommand('norasoderlund.integrationworkbench.editEnvironmentName', this.handle.bind(this))
2020
);
2121
}
2222

@@ -70,7 +70,7 @@ export default class EditEnvironmentNameCommand {
7070

7171
environment.save();
7272

73-
commands.executeCommand("integrationWorkbench.refreshEnvironments");
73+
commands.executeCommand("norasoderlund.integrationworkbench.refreshEnvironments");
7474
});
7575
}
7676
}

app/commands/environments/OpenEnvironmentCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Environment from "../../entities/environments/Environment";
44
export default class OpenEnvironmentCommand {
55
constructor(private readonly context: ExtensionContext) {
66
context.subscriptions.push(
7-
commands.registerCommand('integrationWorkbench.openEnvironment', this.handle.bind(this))
7+
commands.registerCommand('norasoderlund.integrationworkbench.openEnvironment', this.handle.bind(this))
88
);
99
}
1010

0 commit comments

Comments
 (0)