Filter internal oidc clients for rest api

This commit is contained in:
Johannes Zellner
2023-04-24 17:16:57 +02:00
parent f4e4bb97b1
commit 90b5d240a8
2 changed files with 19 additions and 5 deletions
+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.filter(function (c) { return !c.appId; });
$scope.clients = result;
});
};