summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/endpoints.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/api/endpoints/endpoints.ts')
-rw-r--r--src/server/api/endpoints/endpoints.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/server/api/endpoints/endpoints.ts b/src/server/api/endpoints/endpoints.ts
index 3ab14389a9..84ab107c6a 100644
--- a/src/server/api/endpoints/endpoints.ts
+++ b/src/server/api/endpoints/endpoints.ts
@@ -2,12 +2,32 @@ 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 () => {