diff --git a/webadmin/src/views/apps.html b/webadmin/src/views/apps.html index 411577cb1..4d5d7d8e9 100644 --- a/webadmin/src/views/apps.html +++ b/webadmin/src/views/apps.html @@ -30,7 +30,7 @@
- +
-
+

+ This app only works if Cloudron Email is enabled. +

- Show advanced settings... + Advanced settings...
- +
diff --git a/webadmin/src/views/apps.js b/webadmin/src/views/apps.js index abe2f8ca7..5f9ebb96d 100644 --- a/webadmin/src/views/apps.js +++ b/webadmin/src/views/apps.js @@ -1,9 +1,9 @@ 'use strict'; + angular.module('Application').controller('AppsController', ['$scope', '$location', '$timeout', 'Client', 'AppStore', function ($scope, $location, $timeout, Client, AppStore) { $scope.HOST_PORT_MIN = 1024; $scope.HOST_PORT_MAX = 65535; - $scope.installedApps = Client.getInstalledApps(); $scope.config = Client.getConfig(); $scope.user = Client.getUserInfo(); diff --git a/webadmin/src/views/appstore.html b/webadmin/src/views/appstore.html index a07e31ccb..baa886065 100644 --- a/webadmin/src/views/appstore.html +++ b/webadmin/src/views/appstore.html @@ -36,45 +36,44 @@
- +
-
- +
+

- This app has it's own access control and does not use the Cloudron user management. + This app has it's own user management.

- +

- This app authenticates all users using IMAP & SMTP and requires the mail server - to be enabled (under settings). + All users of this Cloudron have access.

- +
No groups available. Create groups
@@ -87,7 +86,9 @@
-
+

+ This app only works if Cloudron Email is enabled. +

diff --git a/webadmin/src/views/appstore.js b/webadmin/src/views/appstore.js index 5d24e09d5..f48f50f48 100644 --- a/webadmin/src/views/appstore.js +++ b/webadmin/src/views/appstore.js @@ -3,6 +3,9 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$location', '$timeout', '$routeParams', 'Client', 'AppStore', function ($scope, $location, $timeout, $routeParams, Client, AppStore) { Client.onReady(function () { if (!Client.getUserInfo().admin) $location.path('/'); }); + $scope.HOST_PORT_MIN = 1024; + $scope.HOST_PORT_MAX = 65535; + $scope.ready = false; $scope.apps = []; $scope.config = Client.getConfig();