theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

33 lines
636 B
TypeScript

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