mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 09:03:08 +02:00
31 lines
614 B
TypeScript
31 lines
614 B
TypeScript
import define from '../define';
|
|
import endpoints from '../endpoints';
|
|
|
|
export const meta = {
|
|
requireCredential: false as const,
|
|
|
|
tags: ['meta'],
|
|
|
|
params: {
|
|
},
|
|
|
|
res: {
|
|
type: 'array' as const,
|
|
optional: false as const, nullable: false as const,
|
|
items: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const,
|
|
},
|
|
example: [
|
|
'admin/abuse-user-reports',
|
|
'admin/accounts/create',
|
|
'admin/announcements/create',
|
|
'...',
|
|
],
|
|
},
|
|
};
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, async () => {
|
|
return endpoints.map(x => x.name);
|
|
});
|