fix config domain syntax

This commit is contained in:
axolotle 2022-03-02 20:46:51 +01:00 committed by Alexandre Aubin
parent 0838d443a1
commit 3644937fff

View file

@ -63,6 +63,7 @@ i18n = "domain_config"
[cert] [cert]
[cert.status] [cert.status]
name = "Status"
[cert.status.cert_summary] [cert.status.cert_summary]
type = "alert" type = "alert"
@ -71,21 +72,19 @@ i18n = "domain_config"
[cert.status.cert_validity] [cert.status.cert_validity]
type = "number" type = "number"
readonly = true readonly = true
visible = "false"
# Automatically filled by DomainConfigPanel # Automatically filled by DomainConfigPanel
[cert.cert] [cert.cert]
name = "Manage"
[cert.cert.cert_issuer] [cert.cert.cert_issuer]
type = "string" type = "string"
readonly = true visible = false
visible = "false"
# Automatically filled by DomainConfigPanel # Automatically filled by DomainConfigPanel
[cert.cert.acme_eligible] [cert.cert.acme_eligible]
type = "boolean" type = "boolean"
readonly = true visible = false
visible = "false"
# Automatically filled by DomainConfigPanel # Automatically filled by DomainConfigPanel
[cert.cert.acme_eligible_explain] [cert.cert.acme_eligible_explain]
@ -107,7 +106,8 @@ i18n = "domain_config"
icon = "star" icon = "star"
style = "success" style = "success"
visible = "issuer != 'letsencrypt'" visible = "issuer != 'letsencrypt'"
enabled = "acme_eligible or cert_no_checks" enabled = "acme_eligible || cert_no_checks"
args = ["cert_no_checks"]
[cert.cert.cert_renew] [cert.cert.cert_renew]
ask = "Renew Let's Encrypt certificate" ask = "Renew Let's Encrypt certificate"
@ -116,4 +116,4 @@ i18n = "domain_config"
icon = "refresh" icon = "refresh"
style = "warning" style = "warning"
visible = "issuer == 'letsencrypt'" visible = "issuer == 'letsencrypt'"
enabled = "acme_eligible or cert_no_checks" enabled = "acme_eligible || cert_no_checks"