summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/post_header/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view/post_header/index.js')
-rw-r--r--webapp/components/post_view/post_header/index.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/webapp/components/post_view/post_header/index.js b/webapp/components/post_view/post_header/index.js
new file mode 100644
index 000000000..d7aaef1d5
--- /dev/null
+++ b/webapp/components/post_view/post_header/index.js
@@ -0,0 +1,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);