17 lines
391 B
JavaScript
17 lines
391 B
JavaScript
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
import { put } from 'redux-saga/effects';
|
|
|
|
import actions from '../../../actions';
|
|
|
|
export function* handleBootstrapUpdate(bootstrap) {
|
|
yield put(actions.handleBootstrapUpdate(bootstrap));
|
|
}
|
|
|
|
export default {
|
|
handleBootstrapUpdate,
|
|
};
|