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

@@ -3,7 +3,6 @@
exports = module.exports = {
activate: activate,
dnsSetup: dnsSetup,
dnsReady: dnsReady,
setupTokenAuth: setupTokenAuth,
getStatus: getStatus,
reboot: reboot,
@@ -100,10 +99,6 @@ function dnsSetup(req, res, next) {
});
}
function dnsReady(req, res, next) {
next(new HttpSuccess(200, cloudron.getConfigStateSync()));
}
function setupTokenAuth(req, res, next) {
assert.strictEqual(typeof req.query, 'object');