mirror of https://github.com/jitsi/jitsi-meet
Merge branch 'actions-rename' of https://github.com/saghul/jitsi-meet into saghul-actions-rename
commit
71c04936af
@ -1,31 +1,31 @@ |
||||
import { Symbol } from '../react'; |
||||
|
||||
/** |
||||
* Action to change muted state of the local audio. |
||||
* Action to change the muted state of the local audio. |
||||
* |
||||
* { |
||||
* type: AUDIO_MUTED_CHANGED, |
||||
* type: SET_AUDIO_MUTED, |
||||
* muted: boolean |
||||
* } |
||||
*/ |
||||
export const AUDIO_MUTED_CHANGED = Symbol('AUDIO_MUTED_CHANGED'); |
||||
export const SET_AUDIO_MUTED = Symbol('SET_AUDIO_MUTED'); |
||||
|
||||
/** |
||||
* Action to signal a change of the facing mode of the local video camera. |
||||
* Action to change the facing mode of the local video camera. |
||||
* |
||||
* { |
||||
* type: CAMERA_FACING_MODE_CHANGED, |
||||
* type: SET_CAMERA_FACING_MODE, |
||||
* cameraFacingMode: CAMERA_FACING_MODE |
||||
* } |
||||
*/ |
||||
export const CAMERA_FACING_MODE_CHANGED = Symbol('CAMERA_FACING_MODE_CHANGED'); |
||||
export const SET_CAMERA_FACING_MODE = Symbol('SET_CAMERA_FACING_MODE'); |
||||
|
||||
/** |
||||
* Action to change muted state of the local video. |
||||
* Action to change the muted state of the local video. |
||||
* |
||||
* { |
||||
* type: VIDEO_MUTED_CHANGED, |
||||
* type: SET_VIDEO_MUTED, |
||||
* muted: boolean |
||||
* } |
||||
*/ |
||||
export const VIDEO_MUTED_CHANGED = Symbol('VIDEO_MUTED_CHANGED'); |
||||
export const SET_VIDEO_MUTED = Symbol('SET_VIDEO_MUTED'); |
||||
|
@ -1,12 +1,12 @@ |
||||
import { Symbol } from '../base/react'; |
||||
|
||||
/** |
||||
* Action to change the participant to be displayed in LargeVideo. |
||||
* Action to select the participant to be displayed in LargeVideo. |
||||
* |
||||
* { |
||||
* type: LARGE_VIDEO_PARTICIPANT_CHANGED, |
||||
* type: SELECT_LARGE_VIDEO_PARTICIPANT, |
||||
* participantId: (string|undefined) |
||||
* } |
||||
*/ |
||||
export const LARGE_VIDEO_PARTICIPANT_CHANGED |
||||
= Symbol('LARGE_VIDEO_PARTICIPANT_CHANGED'); |
||||
export const SELECT_LARGE_VIDEO_PARTICIPANT |
||||
= Symbol('SELECT_LARGE_VIDEO_PARTICIPANT'); |
||||
|
Loading…
Reference in new issue