fcfb5ef0a3
* wip
* ✌️
* use ajv/dist/core
* revert try
* clean up
34 lines
642 B
TypeScript
34 lines
642 B
TypeScript
import define from '../define';
|
|
import endpoints from '../endpoints';
|
|
|
|
export const meta = {
|
|
requireCredential: false,
|
|
|
|
tags: ['meta'],
|
|
|
|
res: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
example: [
|
|
'admin/abuse-user-reports',
|
|
'admin/accounts/create',
|
|
'admin/announcements/create',
|
|
'...',
|
|
],
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async () => {
|
|
return endpoints.map(x => x.name);
|
|
});
|