1 /** 2 * The type of the action which signals that E2EE needs to be enabled / disabled. 3 * 4 * { 5 * type: TOGGLE_E2EE 6 * } 7 */ 8 export const TOGGLE_E2EE = 'TOGGLE_E2EE'; 9 10 /** 11 * The type of the action which signals to set new value E2EE maxMode. 12 * 13 * { 14 * type: SET_MAX_MODE 15 * } 16 */ 17 export const SET_MAX_MODE = 'SET_MAX_MODE'; 18 19 /** 20 * The type of the action which signals to set media encryption key for e2ee. 21 * 22 * { 23 * type: SET_MEDIA_ENCRYPTION_KEY 24 * } 25 */ 26 export const SET_MEDIA_ENCRYPTION_KEY = 'SET_MEDIA_ENCRYPTION_KEY'; 27 28 export const START_VERIFICATION = 'START_VERIFICATION'; 29 30 export const PARTICIPANT_VERIFIED = 'PARTICIPANT_VERIFIED';