(ctx, next)
| 23 | } |
| 24 | |
| 25 | const handlePassword = async (ctx, next) => { |
| 26 | const { password } = ctx.request.body; |
| 27 | ctx.request.body.password = md5password(password) |
| 28 | |
| 29 | await next(); |
| 30 | } |
| 31 | |
| 32 | module.exports = { |
| 33 | verifyUser, |
nothing calls this directly
no test coverage detected