diff --git a/src/views/settings.html b/src/views/settings.html
index 4808c02dd..b68f5e3f6 100644
--- a/src/views/settings.html
+++ b/src/views/settings.html
@@ -344,31 +344,4 @@
-
-
-
Unstable App Listing
-
-
-
-
-
-
- Enable this option to list and install apps in the testing phase. These apps are not officially supported and there is no
- guarantee that they will be updated in the future.
-
-
- Do not use these apps in production.
-
-
-
-
-
-
-
- {{ unstableApps.enabled ? 'Disable' : 'Enable' }}
-
-
-
-
-
diff --git a/src/views/settings.js b/src/views/settings.js
index 12ce42ded..b37016520 100644
--- a/src/views/settings.js
+++ b/src/views/settings.js
@@ -300,14 +300,6 @@ angular.module('Application').controller('SettingsController', ['$scope', '$loca
});
}
- function getUnstableAppsConfig() {
- Client.getUnstableAppsConfig(function (error, result) {
- if (error) return console.error(error);
-
- $scope.unstableApps.enabled = result;
- });
- }
-
function getRegistryConfig() {
Client.getRegistryConfig(function (error, result) {
if (error) return console.error(error);
@@ -416,28 +408,6 @@ angular.module('Application').controller('SettingsController', ['$scope', '$loca
}
};
- $scope.unstableApps = {
- busy: false,
- enabled: false,
-
- submit: function () {
- $scope.unstableApps.busy = true;
-
- Client.setUnstableAppsConfig(!$scope.unstableApps.enabled, function (error) {
- if (error) {
- Client.error(error);
- $scope.unstableApps.busy = false;
- return;
- }
-
- $timeout(function () {
- $scope.unstableApps.busy = false;
- $scope.unstableApps.enabled = !$scope.unstableApps.enabled;
- }, 3000);
- });
- }
- };
-
$scope.cloudronNameChange = {
busy: false,
error: {},
@@ -487,7 +457,6 @@ angular.module('Application').controller('SettingsController', ['$scope', '$loca
Client.onReady(function () {
getAutoupdatePattern();
- getUnstableAppsConfig();
getRegistryConfig();
$scope.update.checkStatus();