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

16 lines
261 B
JavaScript
Raw Normal View History

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