CoreID/app/routing/routers/dash/saml.routes.js
2020-05-03 20:16:54 -05:00

14 lines
237 B
JavaScript

const groups_routes = {
prefix: '/dash/saml',
middleware: [
'auth:UserOnly',
],
get: {
'/service-providers': [ 'controller::dash:SAML.get_sp_listing' ]
},
}
module.exports = exports = groups_routes