diff --git a/src/js/client.js b/src/js/client.js index 971d1d4ff..00c66a006 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -1883,15 +1883,6 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout }); }; - Client.prototype.changeOwnership = function (userId, callback) { - post('/api/v1/users/' + userId + '/make_owner', {}, null, function (error, data, status) { - if (error) return callback(error); - if (status !== 204) return callback(new ClientError(status, data)); - - callback(null); - }); - }; - Client.prototype.removeUser = function (userId, callback) { var config = { data: {}, diff --git a/src/views/users.html b/src/views/users.html index 9371271d6..98ea7a73c 100644 --- a/src/views/users.html +++ b/src/views/users.html @@ -132,31 +132,6 @@ - - -