Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorWelbert Serra <welberts@gmail.com>2017-05-03 04:36:37 +0300
committerbrantje <brantje@gmail.com>2017-05-06 14:32:39 +0300
commit5c0a421b8bfe5972ecfabf44f0fe6b492d0d4526 (patch)
treefd7417aaf77da3e2c84ae70cfd4f0d2d36728789 /js
parentbe465e56bd66d286164656f5d327c03a29835a0d (diff)
Export url's credentials
Diffstat (limited to 'js')
-rw-r--r--js/exporters/exporter-csv.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/exporters/exporter-csv.js b/js/exporters/exporter-csv.js
index 90a15b0b..99494943 100644
--- a/js/exporters/exporter-csv.js
+++ b/js/exporters/exporter-csv.js
@@ -34,7 +34,7 @@ PassmanExporter.csv.export = function (credentials) {
/** global: C_Promise */
return new C_Promise(function () {
var _this = this;
- var headers = ['label', 'username', 'password', 'email', 'description', 'tags'];
+ var headers = ['label', 'username', 'password', 'email', 'description', 'tags', 'url'];
var file_data = '"' + headers.join('","') + '"\n';
for (var i = 0; i < credentials.length; i++) {
var _credential = credentials[i];