mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 04:53:08 +02:00
27 lines
582 B
TypeScript
27 lines
582 B
TypeScript
import $ from 'cafy';
|
|
import define from '../define';
|
|
import endpoints from '../endpoints';
|
|
|
|
export const meta = {
|
|
requireCredential: false as const,
|
|
|
|
tags: ['meta'],
|
|
|
|
params: {
|
|
endpoint: {
|
|
validator: $.str,
|
|
},
|
|
},
|
|
};
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, async (ps) => {
|
|
const ep = endpoints.find(x => x.name === ps.endpoint);
|
|
if (ep == null) return null;
|
|
return {
|
|
params: Object.entries(ep.meta.params || {}).map(([k, v]) => ({
|
|
name: k,
|
|
type: v.validator.name === 'ID' ? 'String' : v.validator.name,
|
|
})),
|
|
};
|
|
});
|