mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
17 lines
394 B
JavaScript
17 lines
394 B
JavaScript
class MoveToFolderIMAP {
|
|
constructor(account, syncbackRequest) {
|
|
this._account = account;
|
|
this._syncbackRequest = syncbackRequest;
|
|
}
|
|
|
|
description() {
|
|
return `MoveToFolder`;
|
|
}
|
|
|
|
run(db, imap) {
|
|
console.log("----------------------- RUNNING MOVE TO FOLDER IMAP");
|
|
imap.getBoxes().then(console.log)
|
|
return Promise.resolve();
|
|
}
|
|
}
|
|
module.exports = MoveToFolderIMAP
|