feat: Add internal runtime configuration

This commit is contained in:
Maksim Eltyshev
2026-01-22 18:02:42 +01:00
parent b852481850
commit 1264fd5715
79 changed files with 561 additions and 122 deletions
+16
View File
@@ -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,
};