diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-06-08 14:24:21 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-06-08 14:24:21 +0900 |
| commit | 55c549a9f83f25ac67fba888223faa9f98749b48 (patch) | |
| tree | 09aba86b913d1ab4fd7049fe1e7961493e08c305 /src/server/api/endpoints/admin/server-info.ts | |
| parent | refactor type (diff) | |
| download | sharkey-55c549a9f83f25ac67fba888223faa9f98749b48.tar.gz sharkey-55c549a9f83f25ac67fba888223faa9f98749b48.tar.bz2 sharkey-55c549a9f83f25ac67fba888223faa9f98749b48.zip | |
Remove entity descriptions
#6627
Diffstat (limited to 'src/server/api/endpoints/admin/server-info.ts')
| -rw-r--r-- | src/server/api/endpoints/admin/server-info.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/server/api/endpoints/admin/server-info.ts b/src/server/api/endpoints/admin/server-info.ts index 1373802f3e..bb2d35e397 100644 --- a/src/server/api/endpoints/admin/server-info.ts +++ b/src/server/api/endpoints/admin/server-info.ts @@ -20,23 +20,19 @@ export const meta = { machine: { type: 'string' as const, optional: false as const, nullable: false as const, - description: 'The name of the running server' }, os: { type: 'string' as const, optional: false as const, nullable: false as const, - description: 'OS used by the server', example: 'linux' }, node: { type: 'string' as const, optional: false as const, nullable: false as const, - description: 'Version of Node.js' }, psql: { type: 'string' as const, optional: false as const, nullable: false as const, - description: 'Version of Postgresql' }, cpu: { type: 'object' as const, @@ -45,12 +41,10 @@ export const meta = { model: { type: 'string' as const, optional: false as const, nullable: false as const, - description: 'The name of the CPU you are using' }, cores: { type: 'number' as const, optional: false as const, nullable: false as const, - description: 'Number of CPU cores used (number of logical processors)' } } }, @@ -62,7 +56,6 @@ export const meta = { type: 'number' as const, optional: false as const, nullable: false as const, format: 'bytes', - description: 'RAM capacity.' } } }, @@ -74,13 +67,11 @@ export const meta = { type: 'number' as const, optional: false as const, nullable: false as const, format: 'bytes', - description: 'Total storage capacity.' }, used: { type: 'number' as const, optional: false as const, nullable: false as const, format: 'bytes', - description: 'Amount of storage used' } } }, @@ -91,7 +82,6 @@ export const meta = { interface: { type: 'string' as const, optional: false as const, nullable: false as const, - description: 'The interface name of your network.', example: 'eth0' } } |