mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-17 12:07:49 +00:00
21 lines
416 B
JavaScript
21 lines
416 B
JavaScript
|
|
/* @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
|
||
|
|
};
|
||
|
|
}
|