summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/notes/show.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/api/endpoints/notes/show.ts')
-rw-r--r--src/server/api/endpoints/notes/show.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/server/api/endpoints/notes/show.ts b/src/server/api/endpoints/notes/show.ts
index e592076a2e..fc8e30788d 100644
--- a/src/server/api/endpoints/notes/show.ts
+++ b/src/server/api/endpoints/notes/show.ts
@@ -6,11 +6,6 @@ import { ApiError } from '../../error';
import { Notes } from '../../../../models';
export const meta = {
- desc: {
- 'ja-JP': '指定した投稿を取得します。',
- 'en-US': 'Get a note.'
- },
-
tags: ['notes'],
requireCredential: false as const,
@@ -18,10 +13,6 @@ export const meta = {
params: {
noteId: {
validator: $.type(ID),
- desc: {
- 'ja-JP': '対象の投稿のID',
- 'en-US': 'Target note ID.'
- }
}
},