2020-11-05 02:31:52 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
2020-11-08 18:34:50 +00:00
|
|
|
*
|
|
|
|
* This file was automatically generated by the Flitter framework.
|
2020-11-05 02:31:52 +00:00
|
|
|
*/
|
|
|
|
const Middleware = require('flitter-auth/middleware/UserOnly')
|
|
|
|
class UserOnly extends Middleware {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = UserOnly
|