feat: Add internal runtime configuration
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
/*!
|
||||
* 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,
|
||||
};
|
||||
Reference in New Issue
Block a user