summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/stats.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-06-08 14:24:21 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-06-08 14:24:21 +0900
commit55c549a9f83f25ac67fba888223faa9f98749b48 (patch)
tree09aba86b913d1ab4fd7049fe1e7961493e08c305 /src/server/api/endpoints/stats.ts
parentrefactor type (diff)
downloadmisskey-55c549a9f83f25ac67fba888223faa9f98749b48.tar.gz
misskey-55c549a9f83f25ac67fba888223faa9f98749b48.tar.bz2
misskey-55c549a9f83f25ac67fba888223faa9f98749b48.zip
Remove entity descriptions
#6627
Diffstat (limited to 'src/server/api/endpoints/stats.ts')
-rw-r--r--src/server/api/endpoints/stats.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/server/api/endpoints/stats.ts b/src/server/api/endpoints/stats.ts
index 748c612564..f9c17f86eb 100644
--- a/src/server/api/endpoints/stats.ts
+++ b/src/server/api/endpoints/stats.ts
@@ -17,27 +17,22 @@ export const meta = {
notesCount: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: 'The count of all (local/remote) notes of this instance.',
},
originalNotesCount: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: 'The count of all local notes of this instance.',
},
usersCount: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: 'The count of all (local/remote) accounts of this instance.',
},
originalUsersCount: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: 'The count of all local accounts of this instance.',
},
instances: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: 'The count of federated instances.',
},
driveUsageLocal: {
type: 'number' as const,