diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-22 05:16:27 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-22 05:16:27 +0900 |
| commit | 3aece449e4a2134381d69754716906353c2dd8bf (patch) | |
| tree | 6effa7785bb5f34b79696f4734d236267cb5f361 /src/server/api/endpoints/notes/show.ts | |
| parent | #2939 part 3 (#2976) (diff) | |
| download | misskey-3aece449e4a2134381d69754716906353c2dd8bf.tar.gz misskey-3aece449e4a2134381d69754716906353c2dd8bf.tar.bz2 misskey-3aece449e4a2134381d69754716906353c2dd8bf.zip | |
Improve API definitions
Diffstat (limited to 'src/server/api/endpoints/notes/show.ts')
| -rw-r--r-- | src/server/api/endpoints/notes/show.ts | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/src/server/api/endpoints/notes/show.ts b/src/server/api/endpoints/notes/show.ts index 3f94eeede5..e84a948c97 100644 --- a/src/server/api/endpoints/notes/show.ts +++ b/src/server/api/endpoints/notes/show.ts @@ -1,18 +1,35 @@ import $ from 'cafy'; import ID from '../../../../misc/cafy-id'; import Note, { pack } from '../../../../models/note'; import { ILocalUser } from '../../../../models/user'; +import getParams from '../../get-params'; + +export const meta = { + stability: 'stable', + + desc: { + 'ja-JP': '指定した投稿を取得します。', + 'en-US': 'Get a note.' + }, + + requireCredential: false, + + params: { + noteId: $.type(ID).note({ + desc: { + 'ja-JP': '対象の投稿のID', + 'en-US': 'Target note ID.' + } + }) + } +}; -/** - * Show a note - */ export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => { - // Get 'noteId' parameter - const [noteId, noteIdErr] = $.type(ID).get(params.noteId); - if (noteIdErr) return rej('invalid noteId param'); + const [ps, psErr] = getParams(meta, params); + if (psErr) return rej(psErr); // Get note const note = await Note.findOne({ - _id: noteId + _id: ps.noteId }); if (note === null) { |