rez_core 7.1.45 → 7.1.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,6 @@ import { ActionDataRepository } from '../repository/action-data.repository';
7
7
  @Injectable()
8
8
  export class ActionDataService extends EntityServiceImpl {
9
9
  constructor(
10
- private readonly dataSource: DataSource,
11
10
  private readonly actionDataRepo: ActionDataRepository,
12
11
  ) {
13
12
  super();
@@ -50,7 +49,7 @@ export class ActionDataService extends EntityServiceImpl {
50
49
  stage_id: number,
51
50
  action_id: number,
52
51
  ) {
53
-
52
+
54
53
  return this.actionDataRepo.resubmitAction(
55
54
  loggedInUser,
56
55
  mapped_entity_type,
@@ -161,7 +161,8 @@ import { ListMasterItems } from '../../listmaster/entity/list-master-items.entit
161
161
  'TaskService',
162
162
  'ActivityLogService',
163
163
  'WorkflowMetaService',
164
- 'EntityModificationService'
164
+ 'EntityModificationService',
165
+ 'ActionDataRepository',
165
166
  ],
166
167
  })
167
168
  export class WorkflowModule { }