fix: 修复模糊查询无效的bug

pull/148/head
xiaojunnuo 2024-08-06 10:12:02 +08:00
parent 1b0ae8654f
commit 93559174c7
3 changed files with 7 additions and 9 deletions

View File

@ -5,6 +5,11 @@ CertD 是一个免费全自动申请和自动部署更新SSL证书的工具。
关键字:证书自动申请、证书自动更新、证书自动续期、证书自动续签
************************
支持开源,为爱发电,我已入驻爱发电
https://afdian.com/a/greper
************************
## 一、特性
本项目不仅支持证书申请过程自动化,还可以自动化部署更新证书,让你的证书永不过期。

View File

@ -1,8 +0,0 @@
# 免费服务器部署
## 1. 注册koyeb账号
https://app.koyeb.com/
## 2. 创建应用

View File

@ -46,7 +46,8 @@ export class PipelineController extends CrudController<PipelineService> {
body.sort = { prop: 'order', asc: false };
}
return super.page({ ...body, buildQuery });
const pageRet = await this.getService().page(body?.query, body?.page, body?.sort, buildQuery);
return this.ok(pageRet);
}
@Post('/add', { summary: Constants.per.authOnly })