mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-11 17:55:13 +08:00
16 lines
251 B
CoffeeScript
16 lines
251 B
CoffeeScript
|
Reflux = require 'reflux'
|
||
|
|
||
|
actions = [
|
||
|
"setEnvironment",
|
||
|
"createAccount",
|
||
|
"signIn",
|
||
|
"authErrorOccurred",
|
||
|
"startConnect",
|
||
|
"finishedConnect",
|
||
|
"moveToPreviousPage",
|
||
|
"moveToPage"
|
||
|
]
|
||
|
|
||
|
module.exports =
|
||
|
Actions = Reflux.createActions(actions)
|