mirror of
https://github.com/certd/certd.git
synced 2026-04-24 12:27:25 +08:00
chore: sql sync
This commit is contained in:
@@ -281,6 +281,7 @@ export default {
|
|||||||
lastCheckTime: "Last Check Time",
|
lastCheckTime: "Last Check Time",
|
||||||
disabled: "Enable/Disable",
|
disabled: "Enable/Disable",
|
||||||
ipCheck: "Enable IP Check",
|
ipCheck: "Enable IP Check",
|
||||||
|
ipCheckHelper: "Enable to check certificate expiration time on each IP (or source site domain) ",
|
||||||
ipSyncAuto: "Enable IP Sync Auto",
|
ipSyncAuto: "Enable IP Sync Auto",
|
||||||
ipSyncMode: "IP Sync Mode",
|
ipSyncMode: "IP Sync Mode",
|
||||||
ipIgnoreCoherence: "Ignore Certificate Coherence",
|
ipIgnoreCoherence: "Ignore Certificate Coherence",
|
||||||
@@ -519,7 +520,7 @@ export default {
|
|||||||
notificationCheckSubmittedPleaseRefresh: "Check task submitted, please refresh later",
|
notificationCheckSubmittedPleaseRefresh: "Check task submitted, please refresh later",
|
||||||
columnId: "ID",
|
columnId: "ID",
|
||||||
columnIp: "IP",
|
columnIp: "IP",
|
||||||
helperIpCname: "Supports entering CNAME domain name",
|
helperIpCname: "Supports entering CNAME domain name or source site domain name",
|
||||||
ruleIpRequired: "Please enter IP",
|
ruleIpRequired: "Please enter IP",
|
||||||
columnCertDomains: "Certificate Domains",
|
columnCertDomains: "Certificate Domains",
|
||||||
columnCertProvider: "Issuer",
|
columnCertProvider: "Issuer",
|
||||||
|
|||||||
@@ -285,6 +285,7 @@ export default {
|
|||||||
lastCheckTime: "上次检查时间",
|
lastCheckTime: "上次检查时间",
|
||||||
disabled: "禁用启用",
|
disabled: "禁用启用",
|
||||||
ipCheck: "开启IP检查",
|
ipCheck: "开启IP检查",
|
||||||
|
ipCheckHelper: "开启后,会检查IP(或源站)上的证书有效期",
|
||||||
ipSyncAuto: "自动同步IP",
|
ipSyncAuto: "自动同步IP",
|
||||||
ipSyncMode: "IP同步模式",
|
ipSyncMode: "IP同步模式",
|
||||||
ipSyncModeHelper: "选择仅检查IPv4或IPv6,或检查所有IP",
|
ipSyncModeHelper: "选择仅检查IPv4或IPv6,或检查所有IP",
|
||||||
@@ -529,7 +530,7 @@ export default {
|
|||||||
notificationCheckSubmittedPleaseRefresh: "检查任务已提交,请稍后刷新查看结果",
|
notificationCheckSubmittedPleaseRefresh: "检查任务已提交,请稍后刷新查看结果",
|
||||||
columnId: "ID",
|
columnId: "ID",
|
||||||
columnIp: "IP",
|
columnIp: "IP",
|
||||||
helperIpCname: "也支持填写CNAME域名",
|
helperIpCname: "也支持填写CNAME域名,源站域名",
|
||||||
ruleIpRequired: "请输入IP",
|
ruleIpRequired: "请输入IP",
|
||||||
columnCertDomains: "证书域名",
|
columnCertDomains: "证书域名",
|
||||||
columnCertProvider: "颁发机构",
|
columnCertProvider: "颁发机构",
|
||||||
|
|||||||
@@ -660,6 +660,7 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat
|
|||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
form: {
|
form: {
|
||||||
|
helper: t("certd.monitor.ipCheckHelper"),
|
||||||
value: false,
|
value: false,
|
||||||
rules: [{ required: true, message: t("certd.monitor.selectRequired") }],
|
rules: [{ required: true, message: t("certd.monitor.selectRequired") }],
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
ALTER TABLE cd_site_info ADD COLUMN ip_sync_auto boolean;
|
||||||
|
ALTER TABLE cd_site_info ADD COLUMN ip_sync_mode varchar(20);
|
||||||
|
ALTER TABLE cd_site_info ADD COLUMN ip_ignore_coherence boolean;
|
||||||
|
|
||||||
|
ALTER TABLE pi_pipeline ADD COLUMN webhook_key varchar(100);
|
||||||
|
ALTER TABLE pi_pipeline ADD COLUMN trigger_count bigint DEFAULT 0;
|
||||||
|
|
||||||
|
CREATE INDEX `index_pipeline_webhook_key` ON `pi_pipeline` (`webhook_key`);
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
ALTER TABLE cd_site_info ADD COLUMN ip_sync_auto boolean;
|
||||||
|
ALTER TABLE cd_site_info ADD COLUMN ip_sync_mode varchar(20);
|
||||||
|
ALTER TABLE cd_site_info ADD COLUMN ip_ignore_coherence boolean;
|
||||||
|
|
||||||
|
ALTER TABLE pi_pipeline ADD COLUMN webhook_key varchar(100);
|
||||||
|
ALTER TABLE pi_pipeline ADD COLUMN trigger_count bigint DEFAULT (0);
|
||||||
|
|
||||||
|
CREATE INDEX "index_pipeline_webhook_key" ON "pi_pipeline" ("webhook_key");
|
||||||
Reference in New Issue
Block a user