summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/stats.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/api/endpoints/stats.ts')
-rw-r--r--src/server/api/endpoints/stats.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/server/api/endpoints/stats.ts b/src/server/api/endpoints/stats.ts
index 955a791948..33d6af515b 100644
--- a/src/server/api/endpoints/stats.ts
+++ b/src/server/api/endpoints/stats.ts
@@ -6,6 +6,7 @@ export const meta = {
requireCredential: false as const,
desc: {
+ 'ja-JP': 'インスタンスの統計を取得します。',
'en-US': 'Get the instance\'s statistics'
},
@@ -43,6 +44,14 @@ export const meta = {
optional: false as const, nullable: false as const,
description: 'The count of federated instances.',
},
+ driveUsageLocal: {
+ type: 'number' as const,
+ optional: false as const, nullable: false as const
+ },
+ driveUsageRemote: {
+ type: 'number' as const,
+ optional: false as const, nullable: false as const
+ }
}
}
};