mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2024-11-01 22:20:30 +08:00
优化插件配置
This commit is contained in:
parent
dfcfbb0cba
commit
18c63ba5f9
@ -60,7 +60,13 @@ export class PluginService extends BaseService {
|
|||||||
*/
|
*/
|
||||||
async addOrUpdate(param: any, type?: 'add' | 'update') {
|
async addOrUpdate(param: any, type?: 'add' | 'update') {
|
||||||
await super.addOrUpdate(param, type);
|
await super.addOrUpdate(param, type);
|
||||||
const info = await this.pluginInfoEntity.findOneBy({ id: param.id });
|
const info = await this.pluginInfoEntity
|
||||||
|
.createQueryBuilder('a')
|
||||||
|
.select(['a.id', 'a.keyName', 'a.status', 'a.hook'])
|
||||||
|
.where({
|
||||||
|
id: Equal(param.id),
|
||||||
|
})
|
||||||
|
.getOne();
|
||||||
if (info.status == 1) {
|
if (info.status == 1) {
|
||||||
await this.reInit(info.keyName);
|
await this.reInit(info.keyName);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user