mirror of
https://github.com/strapi/strapi.git
synced 2025-08-05 07:16:02 +00:00

- Hooks registry - D&P CT migrations - i18N CT migrations - Umzug with js / sql migrations - Eslint updates
16 lines
244 B
JavaScript
16 lines
244 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* A set of functions called "actions" for `d-p-ct`
|
|
*/
|
|
|
|
module.exports = {
|
|
// exampleAction: async (ctx, next) => {
|
|
// try {
|
|
// ctx.body = 'ok';
|
|
// } catch (err) {
|
|
// ctx.body = err;
|
|
// }
|
|
// }
|
|
};
|