jitsi-meet-electron/app/features/onboarding/actionTypes.js

40 lines
799 B
JavaScript

/**
* The type of (redux) action that continues the onboarding by processing
* the next step.
*
* {
* type: CONTINUE_ONBOARDING
* }
*/
export const CONTINUE_ONBOARDING = Symbol('CONTINUE_ONBOARDING');
/**
* The type of (redux) action that sets active onboarding.
*
* {
* type: SET_ACTIVE_ONBOARDING,
* name: string,
* section: string
* }
*/
export const SET_ACTIVE_ONBOARDING = Symbol('SET_ACTIVE_ONBOARDING');
/**
* The type of (redux) action that starts Onboarding.
*
* {
* type: START_ONBOARDING,
* section: string
* }
*/
export const START_ONBOARDING = Symbol('START_ONBOARDING');
/**
* The type of (redux) action that skips all onboarding.
*
* {
* type: SKIP_ONBOARDING
* }
*/
export const SKIP_ONBOARDING = Symbol('SKIP_ONBOARDING');