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/notes.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/notes.ts')
| -rw-r--r-- | src/server/api/endpoints/notes.ts | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/server/api/endpoints/notes.ts b/src/server/api/endpoints/notes.ts index 0e89295351..fdb8bad247 100644 --- a/src/server/api/endpoints/notes.ts +++ b/src/server/api/endpoints/notes.ts @@ -5,46 +5,27 @@ import { makePaginationQuery } from '../common/make-pagination-query'; import { Notes } from '../../../models'; export const meta = { - desc: { - 'ja-JP': '投稿を取得します。' - }, - tags: ['notes'], params: { local: { validator: $.optional.bool, - desc: { - 'ja-JP': 'ローカルの投稿に限定するか否か' - } }, reply: { validator: $.optional.bool, - desc: { - 'ja-JP': '返信に限定するか否か' - } }, renote: { validator: $.optional.bool, - desc: { - 'ja-JP': 'Renoteに限定するか否か' - } }, withFiles: { validator: $.optional.bool, - desc: { - 'ja-JP': 'ファイルが添付された投稿に限定するか否か' - } }, poll: { validator: $.optional.bool, - desc: { - 'ja-JP': 'アンケートが添付された投稿に限定するか否か' - } }, limit: { |