summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/endpoints.ts
blob: 84ab107c6a623ce37b97bd591a340601f43fe12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import define from '../define';
import endpoints from '../endpoints';

export const meta = {
	desc: {
		'ja-JP': '使用できるAPI一覧を返します。',
		'en-US': 'Returns a list of available APIs.'
	},

	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',
			'...'
		]
	}
};

export default define(meta, async () => {
	return endpoints.map(x => x.name);
});