Mailspring/internal_packages/onboarding/lib/onboarding-actions.coffee
Evan Morikawa fe1e18740c feat(onboarding): refactor onboarding flow
Summary:
Add spinner and refactor container view to be router

add `NylasStore` as a global importable. specs for APIEnv

login page fixes

add old fixes to container view

finish extracting pages

fix onboarding flow

Test Plan: edgehill --test

Reviewers: bengotow

Reviewed By: bengotow

Differential Revision: https://phab.nylas.com/D1652
2015-06-17 15:58:58 -07:00

15 lines
256 B
CoffeeScript

Reflux = require 'reflux'
OnboardingActions = Reflux.createActions [
"changeAPIEnvironment"
"loadExternalAuthPage"
"moveToPreviousPage"
"moveToPage"
]
for key, action of OnboardingActions
action.sync = true
module.exports = OnboardingActions