CoreID/app/routing/routers/dash/saml.routes.js

14 lines
237 B
JavaScript
Raw Normal View History

2020-05-04 01:16:54 +00:00
const groups_routes = {
prefix: '/dash/saml',
middleware: [
'auth:UserOnly',
],
get: {
'/service-providers': [ 'controller::dash:SAML.get_sp_listing' ]
},
}
module.exports = exports = groups_routes