summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/post_header/index.js
blob: d7aaef1d5201521a2aab30119def75b06290b0a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import {connect} from 'react-redux';

import {get} from 'mattermost-redux/selectors/entities/preferences';
import {Preferences} from 'mattermost-redux/constants';

import PostHeader from './post_header.jsx';

function mapStateToProps(state, ownProps) {
    return {
        ...ownProps,
        displayNameType: get(state, Preferences.CATEGORY_DISPLAY_SETTINGS, 'name_format', 'false')
    };
}

export default connect(mapStateToProps)(PostHeader);