mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-04 07:10:06 +08:00
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
import Reflux from 'reflux';
|
|
|
|
const ActivityActions = Reflux.createActions(['resetSeen']);
|
|
|
|
for (const key of Object.keys(ActivityActions)) {
|
|
ActivityActions[key].sync = true;
|
|
}
|
|
|
|
export default ActivityActions;
|