+ client: handle access settings

This commit is contained in:
Ildar Kamalov
2019-05-30 17:26:19 +03:00
parent 821ad3edd9
commit 02db488b30
11 changed files with 259 additions and 4 deletions

View File

@@ -8,6 +8,7 @@ import * as actions from '../actions';
import toasts from './toasts';
import encryption from './encryption';
import clients from './clients';
import access from './access';
const settings = handleActions({
[actions.initSettingsRequest]: state => ({ ...state, processing: true }),
@@ -418,6 +419,7 @@ export default combineReducers({
dhcp,
encryption,
clients,
access,
loadingBar: loadingBarReducer,
form: formReducer,
});