Hide oidc clients which are from apps

This commit is contained in:
Johannes Zellner
2023-04-15 17:48:54 +02:00
parent da38d8a045
commit eeda0a2868
+1 -1
View File
@@ -14,7 +14,7 @@ angular.module('Application').controller('OidcController', ['$scope', '$location
Client.getOidcClients(function (error, result) {
if (error) return console.error('Failed to load oidc clients', error);
$scope.clients = result;
$scope.clients = result.filter(function (c) { return !c.appId; });
});
};