mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-03 22:47:03 +03:00
#89 added downloading of decrypted attachments
This commit is contained in:
parent
4a1c3beb78
commit
25a786d584
5 changed files with 36 additions and 30 deletions
|
|
@ -8,7 +8,7 @@ import {
|
|||
import { ComposeType } from 'Common/EnumsUser';
|
||||
|
||||
import { arrayLength, pInt } from 'Common/Utils';
|
||||
import { delegateRunOnDestroy, computedPaginatorHelper, showMessageComposer } from 'Common/UtilsUser';
|
||||
import { download, delegateRunOnDestroy, computedPaginatorHelper, showMessageComposer } from 'Common/UtilsUser';
|
||||
|
||||
import { Selector } from 'Common/Selector';
|
||||
import { serverRequestRaw, serverRequest } from 'Common/Links';
|
||||
|
|
@ -317,11 +317,11 @@ class ContactsPopupView extends AbstractViewPopup {
|
|||
}
|
||||
|
||||
exportVcf() {
|
||||
rl.app.download(serverRequestRaw('ContactsVcf'));
|
||||
download(serverRequestRaw('ContactsVcf'), 'contacts.vcf');
|
||||
}
|
||||
|
||||
exportCsv() {
|
||||
rl.app.download(serverRequestRaw('ContactsCsv'));
|
||||
download(serverRequestRaw('ContactsCsv'), 'contacts.csv');
|
||||
}
|
||||
|
||||
removeCheckedOrSelectedContactsFromList() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue