* Remove mattermost-redux * Move mm-redux files into app/redux * Add @redux path to tsconfig.json * Fix imports * Install missing dependencies * Fix tsc errors * Fix i18n_utils test * Fix more imports * Remove redux websocket * Fix tests * Rename @redux * Apply changes from mattermost-redux PR 1103 * Remove mattermost-redux mention in template * Add missing imports * Rename app/redux/ to app/mm-redux/ * Remove test file * Fix fetching Sidebar GM profiles Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
20 lines
584 B
JavaScript
20 lines
584 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,
|
|
CLOSE_MAIN_SIDEBAR: null,
|
|
MAIN_SIDEBAR_DID_CLOSE: null,
|
|
MAIN_SIDEBAR_DID_OPEN: null,
|
|
CLOSE_SETTINGS_SIDEBAR: null,
|
|
BLUR_POST_TEXTBOX: null,
|
|
});
|
|
|
|
export default NavigationTypes;
|