I am newbie in adonisjs. I want to implement custom response if route method not match.
I have route like this
Route.post('/create', function * (request, response) {response.send('success')})
when call url /create with GET in browser, It send respond 404 not found. Can I use custom response with 405 method not allowed?