Skip to content

Commit

Permalink
Support execution of services (finos#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelbey authored Apr 25, 2024
1 parent ccb25c0 commit a65d4cb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ import {
RESULTS_WEB_VIEW,
SHOW_RESULTS_COMMAND_ID,
EXECUTION_TREE_VIEW,
EXEC_FUNCTION_WITH_PARAMETERS_ID,
LEGEND_CLIENT_COMMAND_ID,
FUNCTION_PARAMTER_VALUES_ID,
SEND_TDS_REQUEST_ID,
Expand Down Expand Up @@ -182,7 +181,6 @@ export function registerCommands(context: ExtensionContext): void {
async (...args: unknown[]) => {
const commandId = args[3] as string;
switch (commandId) {
case EXEC_FUNCTION_WITH_PARAMETERS_ID:
case EXEC_FUNCTION_ID: {
handleExecuteFunctionCommand(context, args);
break;
Expand Down
4 changes: 1 addition & 3 deletions src/utils/Const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ export const SET_CONTEXT_COMMAND_ID = 'setContext';
export const LEGEND_COMMAND = 'legend.command';
export const LEGEND_EXECUTE_COMMAND = 'legend.executeCommand';
export const LEGEND_CLIENT_COMMAND_ID = 'legend.client.command';
export const EXEC_FUNCTION_WITH_PARAMETERS_ID =
'legend.pure.executeFunctionWithParameters';
export const EXEC_FUNCTION_ID = 'legend.pure.executeFunction';
export const EXEC_FUNCTION_ID = 'legend.function.execute';
export const ACTIVATE_FUNCTION_ID = 'legend.pure.activateFunction';
export const SEND_TDS_REQUEST_ID = 'sendTDSRequest';
export const TDS_JSON_REQUEST_ID = 'legend/TDSRequest';
Expand Down

0 comments on commit a65d4cb

Please sign in to comment.