2018-01-19 19:32:37 -05:00
|
|
|
import { changeSetting, saveSettings } from './settings';
|
|
|
|
|
2018-12-17 05:07:17 -05:00
|
|
|
export const INTRODUCTION_VERSION = 20181216044202;
|
2018-01-19 19:32:37 -05:00
|
|
|
|
2018-12-17 05:07:17 -05:00
|
|
|
export const closeOnboarding = () => dispatch => {
|
|
|
|
dispatch(changeSetting(['introductionVersion'], INTRODUCTION_VERSION));
|
|
|
|
dispatch(saveSettings());
|
2018-01-19 19:32:37 -05:00
|
|
|
};
|