mirror of https://github.com/certd/certd
fix: 修复模糊查询无效的bug
parent
1b0ae8654f
commit
93559174c7
|
@ -5,6 +5,11 @@ CertD 是一个免费全自动申请和自动部署更新SSL证书的工具。
|
||||||
|
|
||||||
关键字:证书自动申请、证书自动更新、证书自动续期、证书自动续签
|
关键字:证书自动申请、证书自动更新、证书自动续期、证书自动续签
|
||||||
|
|
||||||
|
************************
|
||||||
|
支持开源,为爱发电,我已入驻爱发电
|
||||||
|
https://afdian.com/a/greper
|
||||||
|
************************
|
||||||
|
|
||||||
## 一、特性
|
## 一、特性
|
||||||
本项目不仅支持证书申请过程自动化,还可以自动化部署更新证书,让你的证书永不过期。
|
本项目不仅支持证书申请过程自动化,还可以自动化部署更新证书,让你的证书永不过期。
|
||||||
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
|
|
||||||
# 免费服务器部署
|
|
||||||
|
|
||||||
## 1. 注册koyeb账号
|
|
||||||
|
|
||||||
https://app.koyeb.com/
|
|
||||||
|
|
||||||
## 2. 创建应用
|
|
|
@ -46,7 +46,8 @@ export class PipelineController extends CrudController<PipelineService> {
|
||||||
body.sort = { prop: 'order', asc: false };
|
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 })
|
@Post('/add', { summary: Constants.per.authOnly })
|
||||||
|
|
Loading…
Reference in New Issue