2020-11-11 02:57:43 +00:00
|
|
|
module.exports = exports = {
|
|
|
|
|
|
|
|
prefix: '/api/v1/data',
|
|
|
|
|
2020-11-11 18:23:31 +00:00
|
|
|
middleware: [],
|
2020-11-11 02:57:43 +00:00
|
|
|
|
|
|
|
get: {
|
|
|
|
// Export the entire personal tree as HTML
|
2020-11-11 18:23:31 +00:00
|
|
|
'/export/html': ['middleware::auth:ApiRoute', 'controller::Export.html_export'],
|
2020-11-11 02:57:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
post: {
|
|
|
|
|
|
|
|
},
|
|
|
|
}
|