1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jenkins_ynh.git synced 2024-09-03 19:26:18 +02:00
jenkins_ynh/config_panel.json

42 lines
883 B
JSON
Raw Normal View History

2018-09-30 11:50:17 +02:00
{
"name": "Jenkins configuration panel",
"version": "0.1",
"panel": [{
"name": "Jenkins configuration",
"id": "main",
"sections": [{
"name": "Public access",
"id": "is_public",
"options": [{
2020-12-03 19:04:21 +01:00
"name": "Is it a public app?",
2018-09-30 11:50:17 +02:00
"id": "is_public",
"type": "bool",
"default": true
}]
},
{
"name": "Overwriting config files",
"id": "overwrite_files",
"options": [{
2020-12-03 19:04:21 +01:00
"name": "Overwrite the NGINX config file?",
2018-09-30 11:50:17 +02:00
"help": "If the file is overwritten, a backup will be created.",
"id": "overwrite_nginx",
"type": "bool",
"default": true
}]
2019-01-30 19:23:57 +01:00
},
{
"name": "Global configuration",
"id": "global_config",
"options": [{
2020-12-03 19:04:21 +01:00
"name": "Send HTML email to admin?",
2019-01-30 19:23:57 +01:00
"help": "Allow app scripts to send HTML mails instead of plain text.",
"id": "email_type",
"type": "bool",
"default": true
}]
2018-09-30 11:50:17 +02:00
}]
}
]
}