* modal options and channel long press * PureComponent optimization (#183) * Bug fix when leaving the current channel * Rebased with new navigation * Add disabled drawer to unit test * re-organize modal up in the stack and controlled by redux * renaming modalOptions to optionsModal
17 lines
368 B
JavaScript
17 lines
368 B
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import keyMirror from 'service/utils/key_mirror';
|
|
|
|
const ViewTypes = keyMirror({
|
|
SERVER_URL_CHANGED: null,
|
|
|
|
LOGIN_ID_CHANGED: null,
|
|
PASSWORD_CHANGED: null,
|
|
|
|
POST_DRAFT_CHANGED: null,
|
|
|
|
OPTIONS_MODAL_CHANGED: null
|
|
});
|
|
|
|
export default ViewTypes;
|