Skip to content

Commit

Permalink
corrects imports in workflowstoraagent and removes log in createworkf…
Browse files Browse the repository at this point in the history
…lowcommandhandler
  • Loading branch information
Kasshern committed Jan 11, 2024
1 parent eaa2254 commit 03aebdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ import { InjectMapper } from '@automapper/nestjs';
import { Injectable, NotFoundException } from '@nestjs/common';
import { WORKFLOW_NOT_FOUND_ERR_MESSAGE } from '../api/err.messages';
import { Workflow } from '../models/workflow';
import { Workflow as WorkflowModel } from '@prisma/client';
import { BpiAccount, Workflow as WorkflowModel } from '@prisma/client';
import { PrismaService } from '../../../../shared/prisma/prisma.service';
import { PrismaPromise } from '@prisma/client';
import { BpiAccountStorageAgent } from '../../../identity/bpiAccounts/agents/bpiAccountsStorage.agent';
import { BpiAccount } from '../../../identity/bpiAccounts/models/bpiAccount';
import { BpiAccountStorageAgent } from '../../../state/bpiAccounts/agents/bpiAccountsStorage.agent';

@Injectable()
export class WorkflowStorageAgent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ export class CreateWorkflowCommandHandler
newWorkflowCandidate,
);

console.log(results);
return results;
}
}

0 comments on commit 03aebdc

Please sign in to comment.