mirror of https://github.com/certd/certd
chore:
parent
b54ae272eb
commit
d0d3e74d55
|
@ -93,7 +93,7 @@ export class CnameRecordService extends BaseService<CnameRecordEntity> {
|
||||||
|
|
||||||
const cnameKey = utils.id.simpleNanoId();
|
const cnameKey = utils.id.simpleNanoId();
|
||||||
const safeDomain = param.domain.replaceAll('.', '-');
|
const safeDomain = param.domain.replaceAll('.', '-');
|
||||||
param.recordValue = `${safeDomain}.${cnameKey}.${cnameProvider.domain}`;
|
param.recordValue = `${safeDomain}-${cnameKey}.${cnameProvider.domain}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
async update(param: any) {
|
async update(param: any) {
|
||||||
|
|
|
@ -15,7 +15,7 @@ export class EmailNotification extends BaseNotification {
|
||||||
open: false,
|
open: false,
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
helper: '可以填写多个,填写一个按回车键再填写下一个',
|
helper: '可以填写多个,填写一个按回车键再填写下一个\n需要先[配置邮件服务器](#/sys/settings/email)',
|
||||||
})
|
})
|
||||||
receivers!: string[];
|
receivers!: string[];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue