Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jitsi-meet/react/features/jaas/reducer.js

28 lines
543 B

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