mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
14 lines
220 B
CoffeeScript
14 lines
220 B
CoffeeScript
|
Reflux = require 'reflux'
|
||
|
|
||
|
actions = [
|
||
|
"setEnvironment",
|
||
|
"authErrorOccurred",
|
||
|
"startConnect",
|
||
|
"finishedConnect",
|
||
|
"moveToPreviousPage",
|
||
|
"moveToPage"
|
||
|
]
|
||
|
|
||
|
module.exports =
|
||
|
Actions = Reflux.createActions(actions)
|