|
@@ -57,7 +57,8 @@ public class AlgorithmServiceImpl implements AlgorithmService {
|
|
|
AlgorithmMapper algorithmMapper,
|
|
|
DictService dictService,
|
|
|
GitConfiguration gitConfiguration,
|
|
|
- AlgorithmExpandMapper algorithmExpandMapper
|
|
|
+ AlgorithmExpandMapper algorithmExpandMapper,
|
|
|
+ UserDomainService userDomainService
|
|
|
) {
|
|
|
this.algoPlatformService = algoPlatformService;
|
|
|
this.schedulerService = schedulerService;
|
|
@@ -66,6 +67,7 @@ public class AlgorithmServiceImpl implements AlgorithmService {
|
|
|
this.dictService = dictService;
|
|
|
this.gitConfiguration = gitConfiguration;
|
|
|
this.algorithmExpandMapper = algorithmExpandMapper;
|
|
|
+ this.userDomainService = userDomainService;
|
|
|
}
|
|
|
|
|
|
//* -------------------------------- Comment --------------------------------
|