custom.js 304 B

123456789101112131415
  1. /**
  2. * @typedef {import('../types').MigrationModule} MigrationModule
  3. */
  4. module.exports = [
  5. /**
  6. * @type {MigrationModule}
  7. */
  8. (body) => {
  9. // processor for MIGRATION_MODULE=custom
  10. // ADD YOUR PROCESS HERE!
  11. // https://github.com/weseek/growi/discussions/7180
  12. return body;
  13. },
  14. ];