mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 08:08:10 +08:00
16 lines
345 B
JavaScript
16 lines
345 B
JavaScript
import Reflux from 'reflux';
|
|
|
|
const OnboardingActions = Reflux.createActions([
|
|
'moveToPreviousPage',
|
|
'moveToPage',
|
|
'setAccount',
|
|
'chooseAccountProvider',
|
|
'identityJSONReceived',
|
|
'finishAndAddAccount',
|
|
]);
|
|
|
|
for (const key of Object.keys(OnboardingActions)) {
|
|
OnboardingActions[key].sync = true;
|
|
}
|
|
|
|
export default OnboardingActions;
|