mirror of
https://github.com/strapi/strapi.git
synced 2025-07-28 11:30:21 +00:00
31 lines
475 B
JavaScript
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: [],
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|