31 lines
475 B
JavaScript
Raw Normal View History

2021-08-26 22:19:19 +02:00
'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: [],
},
},
],
};