UNPKG

adonis-rest

Version:

An Restful api addon for AdonisJs 4 + MongoDB

17 lines (15 loc) 304 B
'use strict' module.exports = class Global { constructor () { } async handle ({ request, auth }, next) { // call next to advance the request console.log( request.method(), request.url(), request.all() // request.header('authorization') ) await next() } }