Files
jitsi-meet/react/features/jaas/reducer.js
Avram Tudor ea56010e09 feat(jaas) display messages about features that are disabled for jaas… (#9448)
* feat(jaas) display messages about features that are disabled for jaas users

* code review
2021-06-25 16:28:54 +03:00

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;
}
},
);