|
|
@@ -1402,8 +1402,15 @@ class ApiController {
|
|
|
let body = ctx.request.body
|
|
|
let data = {
|
|
|
code : body.code,
|
|
|
- userId : body.account
|
|
|
+ userId : body.account,
|
|
|
}
|
|
|
+
|
|
|
+ if(body.uuid){
|
|
|
+ data.userId = body.uuid
|
|
|
+ }
|
|
|
+
|
|
|
+ logger.info("api cdk 接口请求 data:", { "data": data})
|
|
|
+
|
|
|
let serverUrl = await getServerList(body.serverId, 'default')
|
|
|
let err = ""
|
|
|
if (!serverUrl) {
|