mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 20:44:30 +08:00
fe1e18740c
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
14 lines
256 B
CoffeeScript
14 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
|