diff --git a/src/js/client.js b/src/js/client.js
index 459ade1c8..661343fe2 100644
--- a/src/js/client.js
+++ b/src/js/client.js
@@ -630,15 +630,6 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N
});
};
- Client.prototype.getCaasConfig = function (callback) {
- get('/api/v1/caas/config', null, function (error, data, status) {
- if (error) return callback(error);
- if (status !== 200) return callback(new ClientError(status, data));
-
- callback(null, data);
- });
- };
-
Client.prototype.addAuthorizedKey = function (key, callback) {
put('/api/v1/cloudron/ssh/authorized_keys', { key: key }, null, function (error, data, status) {
if (error) return callback(error);
@@ -1153,18 +1144,6 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N
});
};
- Client.prototype.changePlan = function (options, password, callback) {
- var data = options;
- data.password = password;
-
- post('/api/v1/caas/change_plan', data, null, function (error, data, status) {
- if (error) return callback(error);
- if (status !== 202) return callback(new ClientError(status, data));
-
- callback(null, data);
- });
- };
-
Client.prototype.setAdmin = function (domain, password, callback) {
post('/api/v1/domains/' + domain + '/set_admin', { password: password }, null, function (error, data, status) {
if (error) return callback(error);
diff --git a/src/views/settings.html b/src/views/settings.html
index ea4c2670f..5d00bd47a 100644
--- a/src/views/settings.html
+++ b/src/views/settings.html
@@ -91,45 +91,6 @@
-
-
-
-
-
-
-
Cloudron Change Plan
-
-
- This will change your plan from {{ currentPlan.name }} to {{ planChange.requestedPlan.name }}.
-
-
- Your apps and data will be migrated to the new Cloudron and will take around 15 minutes.
-
-
-
-
-