mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-12 07:42:30 +00:00
20 lines
358 B
JavaScript
20 lines
358 B
JavaScript
// @flow
|
|
|
|
import { type Dispatch } from 'redux';
|
|
|
|
import { appNavigate } from '../app/actions';
|
|
|
|
export * from './actions.any';
|
|
|
|
/**
|
|
* Cancels the ongoing knocking and abandons the join flow.
|
|
*
|
|
* @returns {Function}
|
|
*/
|
|
export function cancelKnocking() {
|
|
return async (dispatch: Dispatch<any>) => {
|
|
dispatch(appNavigate(undefined));
|
|
};
|
|
}
|
|
|