You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.9 KiB
64 lines
1.9 KiB
{
|
|
"title": "Test server",
|
|
"forms": {
|
|
"import": {
|
|
"title": "Import data",
|
|
"description": "Import CSV data into a database",
|
|
"submit_title": "Import",
|
|
"fields": [
|
|
{
|
|
"name": "target_db",
|
|
"title": "Database to import to",
|
|
"type": "select",
|
|
"options": [
|
|
["devtest", "Dev Test db"],
|
|
["prodtest", "Prod Test db"]
|
|
]
|
|
},
|
|
{
|
|
"name": "csv_file",
|
|
"title": "CSV file",
|
|
"type": "file"
|
|
}
|
|
]
|
|
},
|
|
"export": {
|
|
"title": "Export data",
|
|
"description": "Export a dump of the database",
|
|
"submit_title": "Export",
|
|
"fields": [
|
|
{
|
|
"name": "source_db",
|
|
"title": "Database to export",
|
|
"type": "select",
|
|
"options": [
|
|
["devtest", "Dev Test db"],
|
|
["prodtest", "Prod Test db"]
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"add_user": {
|
|
"title": "Add user",
|
|
"description": "Add a user to the htaccess file or change their password",
|
|
"submit_title": "Add user",
|
|
"fields": [
|
|
{
|
|
"name": "username",
|
|
"title": "Username",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "password1",
|
|
"title": "Password",
|
|
"type": "password"
|
|
},
|
|
{
|
|
"name": "password2",
|
|
"title": "Password (Repear)",
|
|
"type": "password"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
|