Mailspring/internal_packages/onboarding/lib/onboarding-actions.coffee
Drew Regitsky 5533755b03 New onboarding flow, uses new Nylas auth
Summary:
Depends on D2049
This change replaces the onboarding flow to include new graphics, copy, and
support for the new Nylas auth flow. New account choosing UI presents a list
of account types, rather than guessing based on an entered email. Pages before
and after introduce the user to different features of the client.

Known issue: Polling for gmail account connection works, but continues even if
you leave the page.

Test Plan: Manual testing.

Reviewers: evan

Reviewed By: evan

Differential Revision: https://phab.nylas.com/D2050
2015-09-22 20:11:51 -07:00

16 lines
281 B
CoffeeScript

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