mirror of
https://github.com/strapi/strapi.git
synced 2025-08-03 06:18:37 +00:00
25 lines
319 B
JavaScript
25 lines
319 B
JavaScript
/*
|
|
*
|
|
* LanguageProvider actions
|
|
*
|
|
*/
|
|
|
|
import {
|
|
PLUGIN_LOADED,
|
|
LOAD_PLUGIN,
|
|
} from './constants';
|
|
|
|
export function loadPlugin(newPlugin) {
|
|
return {
|
|
type: LOAD_PLUGIN,
|
|
plugin: newPlugin,
|
|
};
|
|
}
|
|
|
|
export function pluginLoaded(newPlugin) {
|
|
return {
|
|
type: PLUGIN_LOADED,
|
|
plugin: newPlugin,
|
|
};
|
|
}
|