UNPKG

adonis-auth-builder

Version:

Painless authentication generator for your Adonis.js app available to you in one sexy command.

15 lines (12 loc) 237 B
"use strict"; const Config = use("Config"); class ViewHelper { async handle({ view }, next) { view.share({ Config: Config }); // call next to advance the request await next(); } } module.exports = ViewHelper;