mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
a841417011
Summary: - Add initial version of snooze and send later plugins - Tests are missing since this will probably heavily change before we are done with them Test Plan: - TODO Reviewers: drew, bengotow, evan Reviewed By: bengotow, evan Differential Revision: https://phab.nylas.com/D2578
13 lines
241 B
JavaScript
13 lines
241 B
JavaScript
/** @babel */
|
|
import Reflux from 'reflux';
|
|
|
|
const SendLaterActions = Reflux.createActions([
|
|
'sendLater',
|
|
'cancelSendLater',
|
|
])
|
|
|
|
for (const key in SendLaterActions) {
|
|
SendLaterActions[key].sync = true
|
|
}
|
|
|
|
export default SendLaterActions
|