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