33 lines
529 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: 'upload.upload',
},
{
method: 'GET',
path: '/files/count',
handler: 'upload.count',
},
{
method: 'GET',
path: '/files',
handler: 'upload.find',
},
{
method: 'GET',
path: '/files/:id',
handler: 'upload.findOne',
},
{
method: 'DELETE',
path: '/files/:id',
handler: 'upload.destroy',
},
],
};