mirror of https://github.com/1Panel-dev/1Panel
ssongliu
2 years ago
committed by
ssongliu
36 changed files with 23019 additions and 5281 deletions
@ -0,0 +1,6 @@
|
||||
package docs |
||||
|
||||
import _ "embed" |
||||
|
||||
//go:embed swagger.json
|
||||
var SwaggerJson []byte |
@ -1,6 +0,0 @@
|
||||
package operation |
||||
|
||||
import _ "embed" |
||||
|
||||
//go:embed operation.json
|
||||
var OperationJosn []byte |
@ -1,130 +0,0 @@
|
||||
[ |
||||
{ |
||||
"api": "/api/v1/apps/sync", |
||||
"method": "POST", |
||||
"bodyKeys": [], |
||||
"paramKeys": [], |
||||
"BeforeFuntions": [], |
||||
"formatZH": "应用商店同步", |
||||
"formatEN": "App store synchronization" |
||||
}, |
||||
{ |
||||
"api": "/api/v1/apps/install", |
||||
"method": "POST", |
||||
"bodyKeys": [ |
||||
"name" |
||||
], |
||||
"paramKeys": [], |
||||
"BeforeFuntions": [ |
||||
{ |
||||
"input_colume": "name", |
||||
"input_value": "name", |
||||
"isList": false, |
||||
"db": "app_installs", |
||||
"output_colume": "app_id", |
||||
"output_value": "appId" |
||||
}, |
||||
{ |
||||
"info": "appId", |
||||
"isList": false, |
||||
"db": "apps", |
||||
"output_colume": "key", |
||||
"output_value": "appKey" |
||||
} |
||||
], |
||||
"formatZH": "安装应用 [appKey]-[name]", |
||||
"formatEN": "Install app [appKey]-[name]" |
||||
}, |
||||
{ |
||||
"api": "/api/v1/apps/installed/op", |
||||
"method": "POST", |
||||
"bodyKeys": [ |
||||
"installId", |
||||
"operate" |
||||
], |
||||
"paramKeys": [], |
||||
"BeforeFuntions": [ |
||||
{ |
||||
"input_colume": "id", |
||||
"input_value": "installId", |
||||
"isList": false, |
||||
"db": "app_installs", |
||||
"output_colume": "app_id", |
||||
"output_value": "appId" |
||||
}, |
||||
{ |
||||
"input_colume": "id", |
||||
"input_value": "installId", |
||||
"isList": false, |
||||
"db": "app_installs", |
||||
"output_colume": "name", |
||||
"output_value": "appName" |
||||
}, |
||||
{ |
||||
"input_colume": "id", |
||||
"input_value": "appId", |
||||
"isList": false, |
||||
"db": "apps", |
||||
"output_colume": "key", |
||||
"output_value": "appKey" |
||||
} |
||||
], |
||||
"formatZH": "[appKey] 应用 [appName] [operate]", |
||||
"formatEN": "[appKey] App [appName] [operate]" |
||||
}, |
||||
{ |
||||
"api": "/api/v1/apps/installed/sync", |
||||
"method": "POST", |
||||
"bodyKeys": [], |
||||
"paramKeys": [], |
||||
"BeforeFuntions": [], |
||||
"formatZH": "已安装应用同步", |
||||
"formatEN": "App installed synchronization" |
||||
}, |
||||
{ |
||||
"api": "/api/v1/apps/installed/backups/del", |
||||
"method": "POST", |
||||
"bodyKeys": [ |
||||
"ids" |
||||
], |
||||
"paramKeys": [], |
||||
"BeforeFuntions": [ |
||||
{ |
||||
"input_colume": "id", |
||||
"input_value": "ids", |
||||
"isList": true, |
||||
"db": "app_install_backups", |
||||
"output_colume": "name", |
||||
"output_value": "names" |
||||
} |
||||
], |
||||
"formatZH": "删除应用备份 [names]", |
||||
"formatEN": "Deleting an Application Backup [names]" |
||||
}, |
||||
{ |
||||
"api": "/api/v1/apps/installed/port/change", |
||||
"method": "POST", |
||||
"bodyKeys": [ |
||||
"key", |
||||
"name", |
||||
"port" |
||||
], |
||||
"paramKeys": [], |
||||
"BeforeFuntions": [], |
||||
"formatZH": "应用端口修改 [key]-[name] => [port]", |
||||
"formatEN": "Application port update [key]-[name] => [port]" |
||||
}, |
||||
{ |
||||
"api": "/api/v1/apps/installed/port/change", |
||||
"method": "POST", |
||||
"bodyKeys": [ |
||||
"key", |
||||
"name", |
||||
"port" |
||||
], |
||||
"paramKeys": [], |
||||
"BeforeFuntions": [], |
||||
"formatZH": "应用端口修改 [key]-[name] => [port]", |
||||
"formatEN": "Application port update [key]-[name] => [port]" |
||||
} |
||||
] |
Loading…
Reference in new issue