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
+8
View File
@@ -18,6 +18,14 @@ export default (state = initialState, { type, payload }) => {
...state,
bootstrap: payload.bootstrap,
};
case ActionTypes.BOOTSTRAP_UPDATE_HANDLE:
return {
...state,
bootstrap: {
...state.bootstrap,
...payload.bootstrap,
},
};
case ActionTypes.LOGIN_INITIALIZE:
return {
...state,