* Prompt/require user to upgrade to new version * Update en.json * Update app message text * Fix typo and add copyright
28 lines
656 B
JavaScript
28 lines
656 B
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {combineReducers} from 'redux';
|
|
|
|
import channel from './channel';
|
|
import clientUpgrade from './client_upgrade';
|
|
import fetchCache from './fetch_cache';
|
|
import i18n from './i18n';
|
|
import login from './login';
|
|
import root from './root';
|
|
import search from './search';
|
|
import selectServer from './select_server';
|
|
import team from './team';
|
|
import thread from './thread';
|
|
|
|
export default combineReducers({
|
|
channel,
|
|
clientUpgrade,
|
|
fetchCache,
|
|
i18n,
|
|
login,
|
|
root,
|
|
search,
|
|
selectServer,
|
|
team,
|
|
thread
|
|
});
|