auth deploy
This commit is contained in:
12
app/controllers/auth/Forms.controller.js
Normal file
12
app/controllers/auth/Forms.controller.js
Normal file
@@ -0,0 +1,12 @@
|
||||
const FormController = require('flitter-auth/controllers/Forms')
|
||||
|
||||
/*
|
||||
* Handles views and processing for auth registration/login/logout/etc.
|
||||
* Most handlers are inherited from the default flitter-auth/controllers/Forms
|
||||
* controller, however you can override them here as you need.
|
||||
*/
|
||||
class Forms extends FormController {
|
||||
|
||||
}
|
||||
|
||||
module.exports = exports = Forms
|
||||
16
app/controllers/auth/KeyAction.controller.js
Normal file
16
app/controllers/auth/KeyAction.controller.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const Controller = require('flitter-auth/controllers/KeyAction')
|
||||
|
||||
/*
|
||||
* KeyAction Controller
|
||||
* -------------------------------------------------------------
|
||||
* Provides handler methods for flitter-auth's key actions.
|
||||
* Key actions allow your application to dynamically generate
|
||||
* one-time links that call methods on controllers and (optionally)
|
||||
* can even automatically sign in a user for the request, then log
|
||||
* them out. e.g. a password reset link could use a key action.
|
||||
*/
|
||||
class KeyAction extends Controller {
|
||||
|
||||
}
|
||||
|
||||
module.exports = exports = KeyAction
|
||||
13
app/controllers/auth/Oauth2.controller.js
Normal file
13
app/controllers/auth/Oauth2.controller.js
Normal file
@@ -0,0 +1,13 @@
|
||||
const Oauth2Controller = require('flitter-auth/controllers/Oauth2')
|
||||
|
||||
/*
|
||||
* Handles views, processing, and data retrieval for flitter-auth's
|
||||
* built-in OAuth2 server, if it is enabled. Most handlers are inherited
|
||||
* from flitter-auth/controllers/Oauth2, but you can override them here
|
||||
* as you need.
|
||||
*/
|
||||
class Oauth2 extends Oauth2Controller {
|
||||
|
||||
}
|
||||
|
||||
module.exports = exports = Oauth2
|
||||
Reference in New Issue
Block a user