29 lines
543 B
JavaScript
29 lines
543 B
JavaScript
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;
|
|
}
|
|
},
|
|
);
|