mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
fix config domain syntax
This commit is contained in:
parent
0838d443a1
commit
3644937fff
1 changed files with 7 additions and 7 deletions
|
@ -63,6 +63,7 @@ i18n = "domain_config"
|
|||
[cert]
|
||||
|
||||
[cert.status]
|
||||
name = "Status"
|
||||
|
||||
[cert.status.cert_summary]
|
||||
type = "alert"
|
||||
|
@ -71,21 +72,19 @@ i18n = "domain_config"
|
|||
[cert.status.cert_validity]
|
||||
type = "number"
|
||||
readonly = true
|
||||
visible = "false"
|
||||
# Automatically filled by DomainConfigPanel
|
||||
|
||||
[cert.cert]
|
||||
name = "Manage"
|
||||
|
||||
[cert.cert.cert_issuer]
|
||||
type = "string"
|
||||
readonly = true
|
||||
visible = "false"
|
||||
visible = false
|
||||
# Automatically filled by DomainConfigPanel
|
||||
|
||||
[cert.cert.acme_eligible]
|
||||
type = "boolean"
|
||||
readonly = true
|
||||
visible = "false"
|
||||
visible = false
|
||||
# Automatically filled by DomainConfigPanel
|
||||
|
||||
[cert.cert.acme_eligible_explain]
|
||||
|
@ -107,7 +106,8 @@ i18n = "domain_config"
|
|||
icon = "star"
|
||||
style = "success"
|
||||
visible = "issuer != 'letsencrypt'"
|
||||
enabled = "acme_eligible or cert_no_checks"
|
||||
enabled = "acme_eligible || cert_no_checks"
|
||||
args = ["cert_no_checks"]
|
||||
|
||||
[cert.cert.cert_renew]
|
||||
ask = "Renew Let's Encrypt certificate"
|
||||
|
@ -116,4 +116,4 @@ i18n = "domain_config"
|
|||
icon = "refresh"
|
||||
style = "warning"
|
||||
visible = "issuer == 'letsencrypt'"
|
||||
enabled = "acme_eligible or cert_no_checks"
|
||||
enabled = "acme_eligible || cert_no_checks"
|
||||
|
|
Loading…
Add table
Reference in a new issue