mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-14 05:41:05 +08:00
12 lines
183 B
CoffeeScript
12 lines
183 B
CoffeeScript
|
Reflux = require 'reflux'
|
||
|
|
||
|
Actions = [
|
||
|
'focusAccounts'
|
||
|
]
|
||
|
|
||
|
for idx in Actions
|
||
|
Actions[idx] = Reflux.createAction(Actions[idx])
|
||
|
Actions[idx].sync = true
|
||
|
|
||
|
module.exports = Actions
|