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/dash/profile.routes.js

16 lines
227 B

const profile_routes = {
prefix: '/dash/profile',
middleware: ['auth:UserOnly'],
get: {
'/': ['controller::dash:Profile.get_page'],
},
post: {
},
}
module.exports = exports = profile_routes