Alexandre Bodin 0f3f984ea7 Init migration v4
- Hooks registry
- D&P CT migrations
- i18N CT migrations
- Umzug with js / sql migrations
- Eslint updates
2021-09-13 12:03:12 +02:00

16 lines
264 B
JavaScript

'use strict';
const getCoreStore = () => {
return strapi.store({ type: 'plugin', name: 'i18n' });
};
// retrieve a local service
const getService = name => {
return strapi.plugin('i18n').service(name);
};
module.exports = {
getService,
getCoreStore,
};