/* * UserOnly Middleware * ------------------------------------------------------------- * Allows the request to proceed if there's an authenticated user * in the session. Otherwise, redirects the user to the login page * of the default provider. * * This file was automatically generated by the Flitter framework. */ const Middleware = require('flitter-auth/middleware/UserOnly') class UserOnly extends Middleware { } module.exports = UserOnly