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