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

1234567891011121314
  1. import { assign, ReducerRegistry } from '../../base/redux';
  2. import { _SET_INVITE_SEARCH_SUBSCRIPTIONS } from './actionTypes';
  3. ReducerRegistry.register(
  4. 'features/invite-search',
  5. (state = {}, action) => {
  6. switch (action.type) {
  7. case _SET_INVITE_SEARCH_SUBSCRIPTIONS:
  8. return assign(state, 'subscriptions', action.subscriptions);
  9. }
  10. return state;
  11. });