Skip to content

Commit

Permalink
fix(api): command name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
djabarovgeorge committed Nov 13, 2024
1 parent aad76b5 commit 5befc96
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import { StepUpsertMechanismFailedMissingIdException } from '../../exceptions/st
import { toResponseWorkflowDto } from '../../mappers/notification-template-mapper';
import { stepTypeToDefaultDashboardControlSchema } from '../../shared';
import { ProcessWorkflowIssuesUsecase } from '../process-workflow-issues/process-workflow-issues.usecase';
import { ValidateWorkflowCommand } from './validate-workflow.command';
import { ProcessWorkflowIssuesCommand } from '../process-workflow-issues/process-workflow-issues.command';

function buildUpsertControlValuesCommand(
command: UpsertWorkflowCommand,
Expand Down Expand Up @@ -81,7 +81,7 @@ export class UpsertWorkflowUseCase {
const stepIdToControlValuesMap = await this.upsertControlValues(workflow, command);
const preferences = await this.upsertPreference(command, workflow);
const workflowIssues = await this.processWorkflowIssuesUsecase.execute(
ValidateWorkflowCommand.create({
ProcessWorkflowIssuesCommand.create({
user: command.user,
workflow,
preferences,
Expand Down

0 comments on commit 5befc96

Please sign in to comment.