dashboard: oidc is also sso option now

This commit is contained in:
Johannes Zellner
2023-04-25 19:52:14 +02:00
parent 5b6e6a556a
commit 9c5a7eb6bb
3 changed files with 3 additions and 3 deletions

View File

@@ -2624,7 +2624,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
apps = apps.concat(applinks);
async.eachLimit(apps, 20, function (app, iteratorCallback) {
app.ssoAuth = (app.manifest.addons['ldap'] || app.manifest.addons['proxyAuth']) && app.sso;
app.ssoAuth = (app.manifest.addons['ldap'] || app.manifest.addons['oidc'] || app.manifest.addons['proxyAuth']) && app.sso;
if (app.accessLevel !== 'operator' && app.accessLevel !== 'admin') { // only fetch if we have permissions
app.progress = 0;