mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
94badcda15
There could be a few lurking bugs. Please test!
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
import Reflux from 'reflux';
|
|
|
|
const ActionNames = [
|
|
'temporarilyEnableImages',
|
|
'permanentlyEnableImages',
|
|
];
|
|
|
|
const Actions = Reflux.createActions(ActionNames);
|
|
ActionNames.forEach((name)=> {
|
|
Actions[name].sync = true;
|
|
});
|
|
|
|
export default Actions;
|