diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-06-08 14:09:32 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-06-08 14:09:32 +0900 |
| commit | 6b312f755eb171df0afd95a2d4e51cfd7300fa16 (patch) | |
| tree | 261024105325dd0ca8ad36d1315cc705a5ae25ef /src/server/api/endpoints/drive/files/check-existence.ts | |
| parent | 外部リンクアイコンが表示されない問題を修正 (diff) | |
| download | misskey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.tar.gz misskey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.tar.bz2 misskey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.zip | |
Remove endpoint descriptions
#6627
Diffstat (limited to 'src/server/api/endpoints/drive/files/check-existence.ts')
| -rw-r--r-- | src/server/api/endpoints/drive/files/check-existence.ts | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/server/api/endpoints/drive/files/check-existence.ts b/src/server/api/endpoints/drive/files/check-existence.ts index f1741cf086..b20be44072 100644 --- a/src/server/api/endpoints/drive/files/check-existence.ts +++ b/src/server/api/endpoints/drive/files/check-existence.ts @@ -3,11 +3,6 @@ import define from '../../../define'; import { DriveFiles } from '../../../../../models'; export const meta = { - desc: { - 'ja-JP': '与えられたMD5ハッシュ値を持つファイルがドライブに存在するかどうかを返します。', - 'en-US': 'Returns whether the file with the given MD5 hash exists in the user\'s drive.' - }, - tags: ['drive'], requireCredential: true as const, @@ -17,9 +12,6 @@ export const meta = { params: { md5: { validator: $.str, - desc: { - 'ja-JP': 'ファイルのMD5ハッシュ' - } } }, |