* enable ios push notifications * enable android push notifications * NOTICE for push notification and message bar * include message in noty * re-wording notices * feedback review
22 lines
533 B
JavaScript
22 lines
533 B
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {combineReducers} from 'redux';
|
|
|
|
import channel from './channel';
|
|
import i18n from './i18n';
|
|
import login from './login';
|
|
import notification from './notification';
|
|
import optionsModal from './options_modal';
|
|
import selectServer from './select_server';
|
|
import thread from './thread';
|
|
|
|
export default combineReducers({
|
|
channel,
|
|
i18n,
|
|
login,
|
|
notification,
|
|
optionsModal,
|
|
selectServer,
|
|
thread
|
|
});
|