summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/drive/files/show.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-06-08 14:09:32 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-06-08 14:09:32 +0900
commit6b312f755eb171df0afd95a2d4e51cfd7300fa16 (patch)
tree261024105325dd0ca8ad36d1315cc705a5ae25ef /src/server/api/endpoints/drive/files/show.ts
parent外部リンクアイコンが表示されない問題を修正 (diff)
downloadsharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.tar.gz
sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.tar.bz2
sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.zip
Remove endpoint descriptions
#6627
Diffstat (limited to 'src/server/api/endpoints/drive/files/show.ts')
-rw-r--r--src/server/api/endpoints/drive/files/show.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/server/api/endpoints/drive/files/show.ts b/src/server/api/endpoints/drive/files/show.ts
index f4922bff13..33e88fa817 100644
--- a/src/server/api/endpoints/drive/files/show.ts
+++ b/src/server/api/endpoints/drive/files/show.ts
@@ -6,11 +6,6 @@ import { DriveFile } from '../../../../../models/entities/drive-file';
import { DriveFiles } from '../../../../../models';
export const meta = {
- desc: {
- 'ja-JP': '指定したドライブのファイルの情報を取得します。',
- 'en-US': 'Get specified file of drive.'
- },
-
tags: ['drive'],
requireCredential: true as const,
@@ -20,18 +15,10 @@ export const meta = {
params: {
fileId: {
validator: $.optional.type(ID),
- desc: {
- 'ja-JP': '対象のファイルID',
- 'en-US': 'Target file ID'
- }
},
url: {
validator: $.optional.str,
- desc: {
- 'ja-JP': '対象のファイルのURL',
- 'en-US': 'Target file URL'
- }
}
},