jitsi-meet-electron/app/features/conference/actionTypes.js
2018-07-27 09:03:51 +02:00

19 lines
426 B
JavaScript

/**
* The type of (redux) action that is dispatched when conference is joined.
*
* {
* type: CONFERENCE_JOINED,
* conference: Object
* }
*/
export const CONFERENCE_JOINED = Symbol('CONFERENCE_JOINED');
/**
* The type of (redux) action that is dispatched when conference ends.
*
* {
* type: CONFERENCE_ENDED,
* conference: Object
* }
*/export const CONFERENCE_ENDED = Symbol('CONFERENCE_ENDED');