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/base/logging/actions.js

20 lines
416 B

/* @flow */
import { SET_LOGGING_CONFIG } from './actionTypes';
/**
* Sets the configuration of the feature base/logging.
*
* @param {Object} config - The configuration to set on the features
* base/logging.
* @returns {{
* type: SET_LOGGING_CONFIG,
* config: Object
* }}
*/
export function setLoggingConfig(config: Object) {
return {
type: SET_LOGGING_CONFIG,
config
};
}