removes logs
This commit is contained in:
@@ -213,12 +213,10 @@ angular.module('app.frontend')
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.saveItems = function(items, callback) {
|
this.saveItems = function(items, callback) {
|
||||||
console.log("saving items", items);
|
|
||||||
var request = Restangular.one("users", this.user.uuid).one("items");
|
var request = Restangular.one("users", this.user.uuid).one("items");
|
||||||
request.items = _.map(items, function(item){
|
request.items = _.map(items, function(item){
|
||||||
return this.createRequestParamsForItem(item);
|
return this.createRequestParamsForItem(item);
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
console.log("sending request items", request.items);
|
|
||||||
|
|
||||||
request.post().then(function(response) {
|
request.post().then(function(response) {
|
||||||
var savedItems = response.items;
|
var savedItems = response.items;
|
||||||
@@ -228,7 +226,6 @@ angular.module('app.frontend')
|
|||||||
item.mergeMetadataFromItem(savedCounterpart);
|
item.mergeMetadataFromItem(savedCounterpart);
|
||||||
})
|
})
|
||||||
|
|
||||||
console.log("response items", savedItems);
|
|
||||||
callback(response);
|
callback(response);
|
||||||
}.bind(this))
|
}.bind(this))
|
||||||
}
|
}
|
||||||
@@ -293,7 +290,6 @@ angular.module('app.frontend')
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.shareItem = function(item, callback) {
|
this.shareItem = function(item, callback) {
|
||||||
console.log("sharing item", item);
|
|
||||||
if(!this.user.uuid) {
|
if(!this.user.uuid) {
|
||||||
alert("You must be signed in to share.");
|
alert("You must be signed in to share.");
|
||||||
return;
|
return;
|
||||||
@@ -324,7 +320,6 @@ angular.module('app.frontend')
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.unshareItem = function(item, callback) {
|
this.unshareItem = function(item, callback) {
|
||||||
console.log("unsharing item", item);
|
|
||||||
item.presentation_name = null;
|
item.presentation_name = null;
|
||||||
var needsUpdate = [item].concat(item.referencesAffectedBySharingChange() || []);
|
var needsUpdate = [item].concat(item.referencesAffectedBySharingChange() || []);
|
||||||
this.saveItems(needsUpdate, function(success){})
|
this.saveItems(needsUpdate, function(success){})
|
||||||
@@ -338,7 +333,7 @@ angular.module('app.frontend')
|
|||||||
var data = JSON.parse(jsonString);
|
var data = JSON.parse(jsonString);
|
||||||
var customModelManager = new ModelManager();
|
var customModelManager = new ModelManager();
|
||||||
customModelManager.items = this.mapResponseItemsToLocalModels(data.items);
|
customModelManager.items = this.mapResponseItemsToLocalModels(data.items);
|
||||||
console.log("importing data", JSON.parse(jsonString));
|
console.log("Importing data", JSON.parse(jsonString));
|
||||||
this.saveItems(customModelManager.items, function(response){
|
this.saveItems(customModelManager.items, function(response){
|
||||||
callback(response);
|
callback(response);
|
||||||
});
|
});
|
||||||
@@ -486,8 +481,6 @@ angular.module('app.frontend')
|
|||||||
item.content = encryptedContent;
|
item.content = encryptedContent;
|
||||||
item.auth_hash = authHash;
|
item.auth_hash = authHash;
|
||||||
item.local_encryption_scheme = "1.0";
|
item.local_encryption_scheme = "1.0";
|
||||||
|
|
||||||
console.log("Encrypting item. itemKey:", item_key, "authHash:", item.auth_hash);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.encryptItems = function(items, masterKey) {
|
this.encryptItems = function(items, masterKey) {
|
||||||
@@ -532,7 +525,6 @@ angular.module('app.frontend')
|
|||||||
|
|
||||||
this.decryptItems = function(items, masterKey) {
|
this.decryptItems = function(items, masterKey) {
|
||||||
items.forEach(function(item){
|
items.forEach(function(item){
|
||||||
// console.log("is encrypted?", item);
|
|
||||||
if(item.enc_item_key && typeof item.content === 'string') {
|
if(item.enc_item_key && typeof item.content === 'string') {
|
||||||
this.decryptSingleItem(item, masterKey);
|
this.decryptSingleItem(item, masterKey);
|
||||||
}
|
}
|
||||||
|
|||||||
10
vendor/assets/javascripts/transpiled.js
vendored
10
vendor/assets/javascripts/transpiled.js
vendored
@@ -1693,12 +1693,10 @@ var User = function User(json_obj) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
this.saveItems = function (items, callback) {
|
this.saveItems = function (items, callback) {
|
||||||
console.log("saving items", items);
|
|
||||||
var request = Restangular.one("users", this.user.uuid).one("items");
|
var request = Restangular.one("users", this.user.uuid).one("items");
|
||||||
request.items = _.map(items, function (item) {
|
request.items = _.map(items, function (item) {
|
||||||
return this.createRequestParamsForItem(item);
|
return this.createRequestParamsForItem(item);
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
console.log("sending request items", request.items);
|
|
||||||
|
|
||||||
request.post().then(function (response) {
|
request.post().then(function (response) {
|
||||||
var savedItems = response.items;
|
var savedItems = response.items;
|
||||||
@@ -1708,7 +1706,6 @@ var User = function User(json_obj) {
|
|||||||
item.mergeMetadataFromItem(savedCounterpart);
|
item.mergeMetadataFromItem(savedCounterpart);
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log("response items", savedItems);
|
|
||||||
callback(response);
|
callback(response);
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
};
|
};
|
||||||
@@ -1770,7 +1767,6 @@ var User = function User(json_obj) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
this.shareItem = function (item, callback) {
|
this.shareItem = function (item, callback) {
|
||||||
console.log("sharing item", item);
|
|
||||||
if (!this.user.uuid) {
|
if (!this.user.uuid) {
|
||||||
alert("You must be signed in to share.");
|
alert("You must be signed in to share.");
|
||||||
return;
|
return;
|
||||||
@@ -1803,7 +1799,6 @@ var User = function User(json_obj) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
this.unshareItem = function (item, callback) {
|
this.unshareItem = function (item, callback) {
|
||||||
console.log("unsharing item", item);
|
|
||||||
item.presentation_name = null;
|
item.presentation_name = null;
|
||||||
var needsUpdate = [item].concat(item.referencesAffectedBySharingChange() || []);
|
var needsUpdate = [item].concat(item.referencesAffectedBySharingChange() || []);
|
||||||
this.saveItems(needsUpdate, function (success) {});
|
this.saveItems(needsUpdate, function (success) {});
|
||||||
@@ -1817,7 +1812,7 @@ var User = function User(json_obj) {
|
|||||||
var data = JSON.parse(jsonString);
|
var data = JSON.parse(jsonString);
|
||||||
var customModelManager = new ModelManager();
|
var customModelManager = new ModelManager();
|
||||||
customModelManager.items = this.mapResponseItemsToLocalModels(data.items);
|
customModelManager.items = this.mapResponseItemsToLocalModels(data.items);
|
||||||
console.log("importing data", JSON.parse(jsonString));
|
console.log("Importing data", JSON.parse(jsonString));
|
||||||
this.saveItems(customModelManager.items, function (response) {
|
this.saveItems(customModelManager.items, function (response) {
|
||||||
callback(response);
|
callback(response);
|
||||||
});
|
});
|
||||||
@@ -1959,8 +1954,6 @@ var User = function User(json_obj) {
|
|||||||
item.content = encryptedContent;
|
item.content = encryptedContent;
|
||||||
item.auth_hash = authHash;
|
item.auth_hash = authHash;
|
||||||
item.local_encryption_scheme = "1.0";
|
item.local_encryption_scheme = "1.0";
|
||||||
|
|
||||||
console.log("Encrypting item. itemKey:", item_key, "authHash:", item.auth_hash);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
this.encryptItems = function (items, masterKey) {
|
this.encryptItems = function (items, masterKey) {
|
||||||
@@ -2005,7 +1998,6 @@ var User = function User(json_obj) {
|
|||||||
|
|
||||||
this.decryptItems = function (items, masterKey) {
|
this.decryptItems = function (items, masterKey) {
|
||||||
items.forEach(function (item) {
|
items.forEach(function (item) {
|
||||||
// console.log("is encrypted?", item);
|
|
||||||
if (item.enc_item_key && typeof item.content === 'string') {
|
if (item.enc_item_key && typeof item.content === 'string') {
|
||||||
this.decryptSingleItem(item, masterKey);
|
this.decryptSingleItem(item, masterKey);
|
||||||
}
|
}
|
||||||
|
|||||||
2
vendor/assets/javascripts/transpiled.js.map
vendored
2
vendor/assets/javascripts/transpiled.js.map
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user