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/admin/unsuspend-user.ts | |
| parent | 外部リンクアイコンが表示されない問題を修正 (diff) | |
| download | sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.tar.gz sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.tar.bz2 sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.zip | |
Remove endpoint descriptions
#6627
Diffstat (limited to 'src/server/api/endpoints/admin/unsuspend-user.ts')
| -rw-r--r-- | src/server/api/endpoints/admin/unsuspend-user.ts | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/server/api/endpoints/admin/unsuspend-user.ts b/src/server/api/endpoints/admin/unsuspend-user.ts index 7658d37f8b..6d015b51ab 100644 --- a/src/server/api/endpoints/admin/unsuspend-user.ts +++ b/src/server/api/endpoints/admin/unsuspend-user.ts @@ -6,11 +6,6 @@ import { insertModerationLog } from '../../../../services/insert-moderation-log' import { doPostUnsuspend } from '../../../../services/unsuspend-user'; export const meta = { - desc: { - 'ja-JP': '指定したユーザーの凍結を解除します。', - 'en-US': 'Unsuspend a user.' - }, - tags: ['admin'], requireCredential: true as const, @@ -19,10 +14,6 @@ export const meta = { params: { userId: { validator: $.type(ID), - desc: { - 'ja-JP': '対象のユーザーID', - 'en-US': 'The user ID which you want to unsuspend' - } }, } }; |