mattermost-mobile/app/reducers/views/index.js
enahum 6324f22095 PLT-5630 Implement push notifications and unread badge on app icon (#338)
* enable ios push notifications

* enable android push notifications

* NOTICE for push notification and message bar

* include message in noty

* re-wording notices

* feedback review
2017-03-13 09:51:21 -04:00

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
});