Remove password entry from user edit form

This commit is contained in:
Johannes Zellner
2016-02-25 14:15:48 +01:00
parent 160467e199
commit f600ebcf19
3 changed files with 3 additions and 24 deletions

View File

@@ -607,9 +607,8 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
}).error(defaultErrorHandler(callback));
};
Client.prototype.updateUser = function (user, password, callback) {
Client.prototype.updateUser = function (user, callback) {
var data = {
password: password,
email: user.email,
displayName: user.displayName
};