Skip to content

Commit

Permalink
fix(deps): fix sonar issue
Browse files Browse the repository at this point in the history
fix sonar issue

2126
  • Loading branch information
Tyagi-Sunny committed Jul 4, 2024
1 parent 1fee952 commit de375ed
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions services/task-service/src/commands/create-task.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import { Context } from '@loopback/core';
import {Context} from '@loopback/core';
import {
ExecuteWorkflowDto,
WorkflowController,
WorkflowRepository,
} from '@sourceloop/bpmn-service';
import { ILogger, LOGGER } from '@sourceloop/core';
import { AuthenticationBindings } from 'loopback4-authentication';
import {ILogger, LOGGER} from '@sourceloop/core';
import {AuthenticationBindings} from 'loopback4-authentication';
import {
ICommand,
IEvent,
IOutgoingConnector,
IUserTaskService,
} from '../interfaces';
import { TaskServiceBindings } from '../keys';
import { Task } from '../models';
import { TaskRepository, TaskWorkFlowRepository } from '../repositories';
import { CamundaTaskParameters, EventType, Source, User } from '../types';
import {TaskServiceBindings} from '../keys';
import {Task} from '../models';
import {TaskRepository, TaskWorkFlowRepository} from '../repositories';
import {CamundaTaskParameters, EventType, Source, User} from '../types';

export class CreateTaskCommand implements ICommand {
topic = 'create-tasks';
Expand Down Expand Up @@ -44,7 +44,7 @@ export class CreateTaskCommand implements ICommand {
);
await outgoing.publish({
key: EventType.TaskCreated,
payload: { createdTasks },
payload: {createdTasks},
timestamp: Date.now(),
source: Source.TaskService,
});
Expand Down

0 comments on commit de375ed

Please sign in to comment.