mattermost-mobile/app/reducers/views/announcement.js
enahum 27c764d288 [ICU-579] Display Announcement banner (#1428)
* Announcement banner

* Feedback review
2018-02-13 10:23:11 -05:00

17 lines
458 B
JavaScript

// Copyright (c) 2018-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {UserTypes} from 'mattermost-redux/action_types';
import {ViewTypes} from 'app/constants';
export default function banner(state = '', action) {
switch (action.type) {
case ViewTypes.ANNOUNCEMENT_BANNER:
return action.data;
case UserTypes.LOGOUT_SUCCESS:
return '';
default:
return state;
}
}