Remove cloudron name from the setup wizard

This commit is contained in:
Johannes Zellner
2015-10-20 13:20:37 +02:00
parent 446f571bec
commit 8124f0ac7f
4 changed files with 6 additions and 18 deletions

View File

@@ -368,12 +368,11 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
}).error(defaultErrorHandler(callback));
};
Client.prototype.createAdmin = function (username, password, email, name, setupToken, callback) {
Client.prototype.createAdmin = function (username, password, email, setupToken, callback) {
var payload = {
username: username,
password: password,
email: email,
name: name
email: email
};
var that = this;