2020-02-14 02:23:21 +00:00
|
|
|
const updateProfileItems = ( operations ) => ( fields ) => {
|
2019-05-28 14:45:52 +00:00
|
|
|
const resourceKey = 'onboarding-profile';
|
|
|
|
operations.update( [ resourceKey ], {
|
|
|
|
[ resourceKey ]: fields,
|
|
|
|
} );
|
|
|
|
};
|
|
|
|
|
2020-02-14 02:23:21 +00:00
|
|
|
const installPlugins = ( operations ) => ( plugins ) => {
|
2019-08-21 06:34:21 +00:00
|
|
|
const resourceKey = 'plugin-install';
|
|
|
|
operations.update( [ resourceKey ], {
|
|
|
|
[ resourceKey ]: plugins,
|
|
|
|
} );
|
|
|
|
};
|
|
|
|
|
2020-02-14 02:23:21 +00:00
|
|
|
const activatePlugins = ( operations ) => ( plugins ) => {
|
2019-08-21 06:34:21 +00:00
|
|
|
const resourceKey = 'plugin-activate';
|
|
|
|
operations.update( [ resourceKey ], {
|
|
|
|
[ resourceKey ]: plugins,
|
|
|
|
} );
|
|
|
|
};
|
|
|
|
|
2019-05-28 14:45:52 +00:00
|
|
|
export default {
|
2019-08-21 06:34:21 +00:00
|
|
|
activatePlugins,
|
|
|
|
installPlugins,
|
2019-05-28 14:45:52 +00:00
|
|
|
updateProfileItems,
|
|
|
|
};
|