mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-23 01:13:48 +01:00
Refactor
This commit is contained in:
parent
49003e865c
commit
1e4dcf0bbb
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user