Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415
  1. import { assign, ReducerRegistry } from '../../base/redux';
  2. import { _SET_CALLKIT_SUBSCRIPTIONS } from './actionTypes';
  3. import CallKit from './CallKit';
  4. CallKit && ReducerRegistry.register(
  5. 'features/callkit',
  6. (state = {}, action) => {
  7. switch (action.type) {
  8. case _SET_CALLKIT_SUBSCRIPTIONS:
  9. return assign(state, 'subscriptions', action.subscriptions);
  10. }
  11. return state;
  12. });