28 lines
456 B
JavaScript
Raw Normal View History

2021-09-04 00:01:07 +02:00
'use strict';
module.exports = {
type: 'content-api',
routes: [
{
method: 'POST',
path: '/',
handler: 'content-api.upload',
2021-09-04 00:01:07 +02:00
},
{
method: 'GET',
path: '/files',
handler: 'content-api.find',
2021-09-04 00:01:07 +02:00
},
{
method: 'GET',
path: '/files/:id',
handler: 'content-api.findOne',
2021-09-04 00:01:07 +02:00
},
{
method: 'DELETE',
path: '/files/:id',
handler: 'content-api.destroy',
2021-09-04 00:01:07 +02:00
},
],
};