Remove entity descriptions

#6627
This commit is contained in:
syuilo 2021-06-08 14:24:21 +09:00
parent 56600ba1df
commit 55c549a9f8
52 changed files with 1 additions and 249 deletions

View file

@ -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,