dns_ready is not required since it is part of status

This commit is contained in:
Girish Ramakrishnan
2017-01-05 20:50:38 -08:00
committed by Johannes Zellner
parent 64c888fbdb
commit 5969b4825c
3 changed files with 0 additions and 13 deletions

View File

@@ -622,13 +622,6 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
}).error(defaultErrorHandler(callback));
};
Client.prototype.getDnsReady = function (callback) {
get('/api/v1/cloudron/dns_ready').success(function(data, status) {
if (status !== 200) return callback(new ClientError(status, data));
callback(null, data);
}).error(defaultErrorHandler(callback));
};
Client.prototype.createAdmin = function (username, password, email, displayName, setupToken, callback) {
var that = this;