* enable ios push notifications * enable android push notifications * NOTICE for push notification and message bar * include message in noty * re-wording notices * feedback review
13 lines
347 B
JavaScript
13 lines
347 B
JavaScript
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {ViewTypes} from 'app/constants';
|
|
|
|
export default function notification(state = null, action) {
|
|
switch (action.type) {
|
|
case ViewTypes.NOTIFICATION_CHANGED:
|
|
return action.data;
|
|
default:
|
|
return state;
|
|
}
|
|
}
|