mirror of
https://github.com/ComfortablyCoding/strapi-plugin-website-builder.git
synced 2025-12-22 00:11:26 -05:00
15 lines
177 B
JavaScript
15 lines
177 B
JavaScript
'use strict';
|
|
|
|
module.exports = [
|
|
{
|
|
method: 'POST',
|
|
path: '/builds',
|
|
handler: 'build.trigger',
|
|
},
|
|
{
|
|
method: 'GET',
|
|
path: '/builds',
|
|
handler: 'build.find',
|
|
},
|
|
];
|