backend/app/routing/routers/api/v1/data.routes.js

18 lines
261 B
JavaScript
Raw Normal View History

module.exports = exports = {
prefix: '/api/v1/data',
middleware: [
'auth:ApiRoute'
],
get: {
// Export the entire personal tree as HTML
'/export/html': ['controller::Export.html_export'],
},
post: {
},
}