mattermost-mobile/app/constants/navigation.js
Mattermost Build 123f504dac
Fix Post Input and drawers gesture conflict (#5762) (#5763)
(cherry picked from commit e5142f8524)

Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
2021-10-18 18:47:31 -03:00

23 lines
672 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import keyMirror from '@mm-redux/utils/key_mirror';
const NavigationTypes = keyMirror({
NAVIGATION_RESET: null,
NAVIGATION_CLOSE_MODAL: null,
NAVIGATION_NO_TEAMS: null,
RESTART_APP: null,
NAVIGATION_ERROR_TEAMS: null,
NAVIGATION_SHOW_OVERLAY: null,
NAVIGATION_DISMISS_AND_POP_TO_ROOT: null,
CLOSE_MAIN_SIDEBAR: null,
MAIN_SIDEBAR_DID_CLOSE: null,
MAIN_SIDEBAR_DID_OPEN: null,
CLOSE_SETTINGS_SIDEBAR: null,
BLUR_POST_DRAFT: null,
CLOSE_SLIDE_UP: null,
DRAWER: null,
});
export default NavigationTypes;