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