backend/app/routing/middleware/auth/Utility.middleware.js
2020-02-07 21:08:44 -06:00

16 lines
396 B
JavaScript

/*
* Auth Utility Middleware
* -------------------------------------------------------------
* This should be applied globally. Ensures basic things about the
* request are true. For example, it provides the auth session data
* and handles auth flow.
*/
const Middleware = require('flitter-auth/middleware/Utility')
class Utility extends Middleware {
}
module.exports = Utility