This commit is contained in:
syuilo 2019-02-24 17:35:19 +09:00
parent 563d604812
commit e6e7cecdb6
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 4 additions and 4 deletions

View File

@ -96,10 +96,10 @@ export function genOpenapiSpec(lang = 'ja-JP') {
}
if (endpoint.meta.params) {
for (const kv of Object.entries(endpoint.meta.params)) {
if (kv[1].desc) (kv[1].validator as any).desc = kv[1].desc[lang];
if (kv[1].default) (kv[1].validator as any).default = kv[1].default;
porops[kv[0]] = kv[1].validator;
for (const [k, v] of Object.entries(endpoint.meta.params)) {
if (v.desc) (v.validator as any).desc = v.desc[lang];
if (v.default) (v.validator as any).default = v.default;
porops[k] = v.validator;
}
}