@alsew_/strapi-plugin-migration
Version:
Strapi migration plugin for cms
35 lines (34 loc) • 803 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
type: 'admin',
routes: [
{
method: 'GET',
path: '/migrations',
handler: 'migrations.get',
config: {
policies: [],
auth: false,
},
},
{
method: 'DELETE',
path: '/migrations/:id',
handler: 'migrations.delete',
config: {
policies: [],
auth: false,
},
},
{
method: 'POST',
path: '/migrations/run',
handler: 'migrations.run',
config: {
policies: [],
auth: false,
},
},
],
};