- Extend rcmail.env.messages with 'flags' object for plugin's flags (#1486266)
| | |
| | | } |
| | | } |
| | | } |
| | | |
| | | |
| | | return allow ? (copy ? 2 : 1) : 0; |
| | | }; |
| | | |
| | |
| | | depth: flags.depth?flags.depth:0, |
| | | unread_children: flags.unread_children?flags.unread_children:0, |
| | | parent_uid: flags.parent_uid?flags.parent_uid:0, |
| | | selected: this.select_all_mode || this.message_list.in_selection(uid) |
| | | selected: this.select_all_mode || this.message_list.in_selection(uid), |
| | | // flags from plugins |
| | | flags: flags.extra_flags |
| | | }); |
| | | |
| | | var c, tree = expando = '', |
| | |
| | | |
| | | querystring += (querystring ? '&' : '') + '_remote=1'; |
| | | var url = this.env.comm_path + '&_action=' + action + '&' + querystring; |
| | | |
| | | |
| | | // send request |
| | | console.log('HTTP GET: ' + url); |
| | | $.get(url, { _unlock:(lock?1:0) }, function(data){ ref.http_response(data); }, 'json'); |