mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
fix: 修复服务端导入 basePath 设置 bug
This commit is contained in:
parent
96fe7eea0a
commit
1b29578513
@ -82,7 +82,8 @@ async function handle(
|
||||
|
||||
await axios.post(projectApiPath, {
|
||||
id: projectId,
|
||||
basepath: info.basePath
|
||||
basepath: info.basePath,
|
||||
token
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -50,7 +50,8 @@ class baseController {
|
||||
'/api/interface/getCatMenu',
|
||||
'/api/interface/list_cat',
|
||||
'/api/project/get',
|
||||
'/api/plugin/export'
|
||||
'/api/plugin/export',
|
||||
'/api/project/up'
|
||||
];
|
||||
|
||||
let params = Object.assign({}, ctx.query, ctx.request.body);
|
||||
@ -58,6 +59,7 @@ class baseController {
|
||||
|
||||
// 如果前缀是 /api/open,执行 parse token 逻辑
|
||||
if (token && (openApiRouter.indexOf(ctx.path) > -1 || ctx.path.indexOf('/api/open/') === 0 )) {
|
||||
|
||||
let tokens = parseToken(token)
|
||||
|
||||
const oldTokenUid = '999999'
|
||||
|
Loading…
x
Reference in New Issue
Block a user