mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 08:08:10 +08:00
5533755b03
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
15 lines
281 B
CoffeeScript
15 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
|