jiti-meet/react/features/chat/actions.native.js

23 lines
389 B
JavaScript
Raw Normal View History

2020-07-21 12:21:01 +00:00
// @flow
import { OPEN_CHAT } from './actionTypes';
2020-07-21 12:21:01 +00:00
export * from './actions.any';
/**
* Displays the chat panel.
2020-07-21 12:21:01 +00:00
*
* @param {Object} participant - The recipient for the private chat.
*
* @returns {{
* participant: Participant,
* type: OPEN_CHAT
* }}
2020-07-21 12:21:01 +00:00
*/
export function openChat(participant: Object) {
return {
participant,
type: OPEN_CHAT
2020-07-21 12:21:01 +00:00
};
}