Handle proxyAuth addon

This commit is contained in:
Girish Ramakrishnan
2020-11-10 09:56:57 -08:00
parent a80ddc17a7
commit 4cebc58576
4 changed files with 84 additions and 3 deletions
+1 -1
View File
@@ -447,7 +447,7 @@ angular.module('Application').controller('ProfileController', ['$scope', '$trans
var ftp = app.manifest.addons.localstorage && app.manifest.addons.localstorage.ftp;
// ignore apps without ftp and ldap or email
if (!ftp && (!app.manifest.addons.ldap || app.manifest.addons.email || !app.sso)) return;
if (!ftp && (!app.manifest.addons.ldap || !app.manifest.addons.proxyAuth || app.manifest.addons.email || !app.sso)) return;
appsById[app.id] = app;
var labelSuffix = ftp ? ' - SFTP' : '';