mirror of https://github.com/certd/certd
chore:
parent
30db27980c
commit
febe87508c
|
@ -72,6 +72,9 @@ export class HistoryController extends CrudController<HistoryService> {
|
||||||
sort: body.sort,
|
sort: body.sort,
|
||||||
buildQuery,
|
buildQuery,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return this.ok(res);
|
return this.ok(res);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,7 @@ export class HistoryService extends BaseService<HistoryEntity> {
|
||||||
const res = await super.page(pageReq);
|
const res = await super.page(pageReq);
|
||||||
for (const item of res.records) {
|
for (const item of res.records) {
|
||||||
item.fillPipelineTitle();
|
item.fillPipelineTitle();
|
||||||
|
delete item.pipeline;
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue