mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-10 10:11:25 +08:00
12 lines
234 B
Text
12 lines
234 B
Text
|
import Reflux from 'reflux';
|
||
|
|
||
|
const ActivityListActions = Reflux.createActions([
|
||
|
"resetSeen",
|
||
|
]);
|
||
|
|
||
|
for (const key of Object.keys(ActivityListActions)) {
|
||
|
ActivityListActions[key].sync = true;
|
||
|
}
|
||
|
|
||
|
export default ActivityListActions;
|