mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
16 lines
348 B
JavaScript
16 lines
348 B
JavaScript
import Reflux from 'reflux';
|
|
|
|
const OnboardingActions = Reflux.createActions([
|
|
"setAccountInfo",
|
|
"setAccountType",
|
|
"moveToPreviousPage",
|
|
"moveToPage",
|
|
"authenticationJSONReceived",
|
|
"accountJSONReceived",
|
|
]);
|
|
|
|
for (const key of Object.keys(OnboardingActions)) {
|
|
OnboardingActions[key].sync = true;
|
|
}
|
|
|
|
export default OnboardingActions;
|