about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/notifications/containers/column_settings_container.jsx
blob: 6907fd35168fcfae30f491757ed6c53f9bcada94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { connect } from 'react-redux';
import ColumnSettings from '../components/column_settings';
import { changeNotificationsSetting } from '../../../actions/notifications';

const mapStateToProps = state => ({
  settings: state.getIn(['notifications', 'settings'])
});

const mapDispatchToProps = dispatch => ({

  onChange (key, checked) {
    dispatch(changeNotificationsSetting(key, checked));
  }

});

export default connect(mapStateToProps, mapDispatchToProps)(ColumnSettings);