mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-01 13:14:16 +08:00
17 lines
348 B
Text
17 lines
348 B
Text
|
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;
|