jitsi-meet-electron/app/features/settings/actionTypes.js
Christoph Settgast d970d210da
feat: force prejoin page instead of profile and av settings (#690)
The settings and the prejoin page which is forced on many instances
including meet.jit.si did conflict, as you could set values in the
settings, then try to override them in den prejoin page only to notice
that it would not work. Clean this up by only having the prejoin page
where all settings can be done before joining the conference.

Closes: #687
2021-12-21 07:34:16 +01:00

41 lines
877 B
JavaScript

/**
* The type of (redux) action that sets Window always on top.
*
* @type {
* type: SET_ALWAYS_ON_TOP_WINDOW_ENABLED,
* alwaysOnTopWindowEnabled: boolean
* }
*/
export const SET_ALWAYS_ON_TOP_WINDOW_ENABLED
= Symbol('SET_ALWAYS_ON_TOP_WINDOW_ENABLED');
/**
* The type of (redux) action that sets disable AGC.
*
* @type {
* type: SET_DISABLE_AGC,
* disableAGC: boolean
* }
*/
export const SET_DISABLE_AGC = Symbol('SET_DISABLE_AGC');
/**
* The type of (redux) action that sets the Server URL.
*
* @type {
* type: SET_SERVER_URL,
* serverURL: string
* }
*/
export const SET_SERVER_URL = Symbol('SET_SERVER_URL');
/**
* The type of (redux) action that sets the Server Timeout.
*
* @type {
* type: SET_SERVER_TIMEOUT,
* serverTimeout: number
* }
*/
export const SET_SERVER_TIMEOUT = Symbol('SET_SERVER_TIMEOUT');