* Fixed copyright date * Removed unnecessary components folder from channel scene * Added initial version of post textbox * Moved getTheme into a proper selector * Moved ChannelHeader into its own component * Flipped post list so that the most recent posts appear at the bottom * Moved post textbox value into redux view store * Switched new components from PureRenderMixin to React.PureComponent
16 lines
367 B
JavaScript
16 lines
367 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,
|
|
|
|
TOGGLE_CHANNEL_DRAWER: null,
|
|
POST_DRAFT_CHANGED: null
|
|
});
|
|
|
|
export default ViewTypes;
|