perf: 支持西部数码DNS

This commit is contained in:
Moeyuuko
2024-09-03 15:40:45 +08:00
parent 6314e8d7eb
commit c59cab1aae
4 changed files with 159 additions and 0 deletions
@@ -0,0 +1,27 @@
import { IsAccess, AccessInput } from '@certd/pipeline';
/**
* 这个注解将注册一个授权配置
* 在certd的后台管理系统中,用户可以选择添加此类型的授权
*/
@IsAccess({
name: 'west',
title: '西部数码授权',
desc: '',
})
export class WestAccess {
/**
* 授权属性配置
*/
@AccessInput({
title: 'ApiKey',
component: {
placeholder: 'apidomainkey',
},
helper:'前往https://www.west.cn/manager/domain/ 进入对应域名管理页面,上方点击ApiKey获取密钥',
required: true,
})
apidomainkey = '';
}
new WestAccess();