forked from FoundKeyGang/FoundKey
Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
This commit is contained in:
commit
3e9ac810ba
1 changed files with 2 additions and 2 deletions
|
@ -20,9 +20,9 @@ export default define(meta, paramDef, async (ps) => {
|
||||||
const ep = endpoints.find(x => x.name === ps.endpoint);
|
const ep = endpoints.find(x => x.name === ps.endpoint);
|
||||||
if (ep == null) return null;
|
if (ep == null) return null;
|
||||||
return {
|
return {
|
||||||
params: Object.entries(ep.meta.params || {}).map(([k, v]) => ({
|
params: Object.entries(ep.params.properties || {}).map(([k, v]) => ({
|
||||||
name: k,
|
name: k,
|
||||||
type: v.validator.name === 'ID' ? 'String' : v.validator.name,
|
type: v.type.charAt(0).toUpperCase() + v.type.slice(1),
|
||||||
})),
|
})),
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue