2022-04-12 11:12:11 +02:00

28 lines
456 B
JavaScript

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