diff --git a/webadmin/src/views/apps.js b/webadmin/src/views/apps.js index d28c03800..d00493391 100644 --- a/webadmin/src/views/apps.js +++ b/webadmin/src/views/apps.js @@ -193,7 +193,7 @@ angular.module('Application').controller('AppsController', ['$scope', '$location $scope.appConfigure.xFrameOptions = app.xFrameOptions.indexOf('ALLOW-FROM') === 0 ? app.xFrameOptions.split(' ')[1] : ''; var manifest = app.manifest; - $scope.appConfigure.needsOAuthProxy = !(manifest.addons['ldap'] || manifest.addons['oauth'] || manifest.addons['simpleauth']); + $scope.appConfigure.needsOAuthProxy = !(manifest.addons['ldap'] || manifest.addons['oauth'] || manifest.addons['simpleauth'] || manifest.customAuth); if ($scope.appConfigure.needsOAuthProxy && !app.oauthProxy) { $scope.appConfigure.accessRestrictionOption = 'unrestricted'; } else {