| 12345678910111213141516171819202122232425262728 | import { ReducerRegistry } from '../base/redux';
import {
    SET_DETAILS
} from './actionTypes';
import { STATUSES } from './constants';
const DEFAULT_STATE = {
    disabledFeatures: [],
    status: STATUSES.ACTIVE
};
/**
 * Listen for actions that mutate the billing-counter state
 */
ReducerRegistry.register(
    'features/jaas', (state = DEFAULT_STATE, action) => {
        switch (action.type) {
        case SET_DETAILS: {
            return action.payload;
        }
        default:
            return state;
        }
    },
);
 |