mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-13 21:24:58 +08:00
14 lines
254 B
Text
14 lines
254 B
Text
|
import Reflux from 'reflux';
|
||
|
|
||
|
const ActionNames = [
|
||
|
'temporarilyEnableImages',
|
||
|
'permanentlyEnableImages',
|
||
|
];
|
||
|
|
||
|
const Actions = Reflux.createActions(ActionNames);
|
||
|
ActionNames.forEach((name)=> {
|
||
|
Actions[name].sync = true;
|
||
|
});
|
||
|
|
||
|
export default Actions;
|