CoreID/app/routing/routers/auth/keyaction.routes.js

17 lines
411 B
JavaScript
Raw Normal View History

2020-04-17 00:59:48 +00:00
module.exports = exports = {
prefix: '/auth/action', // This is assumed by flitter-auth. Don't change it.
middleware: [],
get: {
'/:key': [
'middleware::auth:KeyAction',
'controller::auth:KeyAction.handle',
],
},
post: {
'/:key': [
'middleware::auth:KeyAction',
'controller::auth:KeyAction.handle',
],
},
}