mirror of
https://github.com/moparisthebest/mail
synced 2024-11-22 08:52:15 -05:00
fixed jshint errors
This commit is contained in:
parent
d49d95ab16
commit
79df873d55
@ -122,7 +122,9 @@ define(function(require) {
|
||||
* List the folders in the user's IMAP mailbox.
|
||||
*/
|
||||
EmailDAO.prototype.imapListFolders = function(callback) {
|
||||
|
||||
callback({
|
||||
errMsg: 'Not yet implemented!'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
@ -132,7 +134,9 @@ define(function(require) {
|
||||
* @param {Number} num The number of items to fetch (null means fetch all)
|
||||
*/
|
||||
EmailDAO.prototype.imapListMessages = function(options, callback) {
|
||||
|
||||
callback({
|
||||
errMsg: 'Not yet implemented!'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
@ -140,7 +144,9 @@ define(function(require) {
|
||||
* @param {String} options.messageId The
|
||||
*/
|
||||
EmailDAO.prototype.imapGetMessage = function(options, callback) {
|
||||
|
||||
callback({
|
||||
errMsg: 'Not yet implemented!'
|
||||
});
|
||||
};
|
||||
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user