You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CoreID/app/routing/routers/auth/trust.routes.js

19 lines
317 B

const trust_routes = {
prefix: '/auth/trust',
middleware: [
'auth:UserOnly',
],
get: {
'/token/issue': ['controller::auth:Trust.get_issue'],
// '/token/continue': ['controller::auth:Trust.get_continue'],
},
post: {
},
}
module.exports = exports = trust_routes