This commit is contained in:
xiaojunnuo
2024-10-14 13:52:37 +08:00
parent 6ea5f04bae
commit cf92db7ed1
19 changed files with 4638 additions and 14 deletions

View File

@@ -3,7 +3,7 @@ import { BaseService, PageReq } from '@certd/lib-server';
import { PluginEntity } from '../entity/plugin.js';
import { InjectEntityModel } from '@midwayjs/typeorm';
import { Repository } from 'typeorm';
import { checkComm, isComm } from '@certd/pipeline';
import { isComm } from '@certd/pipeline';
import { BuiltInPluginService } from '../../pipeline/service/builtin-plugin-service.js';
import { merge } from 'lodash-es';
@@ -18,7 +18,6 @@ export class PluginService extends BaseService<PluginEntity> {
//@ts-ignore
getRepository() {
checkComm();
return this.repository;
}