2021-08-30 17:02:40 +02:00

31 lines
475 B
JavaScript

'use strict';
module.exports = {
routes: [
{
method: 'GET',
path: '/homepage',
handler: 'homepage.find',
config: {
policies: [],
},
},
{
method: 'PUT',
path: '/homepage',
handler: 'homepage.update',
config: {
policies: [],
},
},
{
method: 'DELETE',
path: '/homepage',
handler: 'homepage.delete',
config: {
policies: [],
},
},
],
};