UNPKG

@alsew_/strapi-plugin-migration

Version:
35 lines (34 loc) 803 B
"use strict"; 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, }, }, ], };