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