summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/meta.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/api/endpoints/meta.ts')
-rw-r--r--src/server/api/endpoints/meta.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/server/api/endpoints/meta.ts b/src/server/api/endpoints/meta.ts
index e7a6a401d8..dd75149ad2 100644
--- a/src/server/api/endpoints/meta.ts
+++ b/src/server/api/endpoints/meta.ts
@@ -33,13 +33,11 @@ export const meta = {
version: {
type: 'string' as const,
optional: false as const, nullable: false as const,
- description: 'The version of Misskey of this instance.',
example: config.version
},
name: {
type: 'string' as const,
optional: false as const, nullable: false as const,
- description: 'The name of this instance.',
},
uri: {
type: 'string' as const,
@@ -50,7 +48,6 @@ export const meta = {
description: {
type: 'string' as const,
optional: false as const, nullable: true as const,
- description: 'The description of this instance.',
},
langs: {
type: 'array' as const,
@@ -82,17 +79,14 @@ export const meta = {
disableRegistration: {
type: 'boolean' as const,
optional: false as const, nullable: false as const,
- description: 'Whether disabled open registration.',
},
disableLocalTimeline: {
type: 'boolean' as const,
optional: false as const, nullable: false as const,
- description: 'Whether disabled LTL and STL.',
},
disableGlobalTimeline: {
type: 'boolean' as const,
optional: false as const, nullable: false as const,
- description: 'Whether disabled GTL.',
},
driveCapacityPerLocalUserMb: {
type: 'number' as const,