(ctx, next)
| 30 | } |
| 31 | |
| 32 | async list(ctx, next) { |
| 33 | const { momentId } = ctx.query; |
| 34 | const result = await service.getCommentsByMomentId(momentId); |
| 35 | ctx.body = result; |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | module.exports = new CommentController(); |
nothing calls this directly
no test coverage detected