16 lines
396 B
JavaScript
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
|