?all is gone in clients route

This commit is contained in:
Johannes Zellner
2016-06-07 13:17:02 +02:00
parent ffd552583c
commit 3598d89b12
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -253,7 +253,7 @@ angular.module('Application').controller('AccountController', ['$scope', '$locat
function refresh() {
$scope.tokenInUse = Client._token;
Client.getOAuthClients(!!$scope.user.admin /* admins see all */, function (error, activeClients) {
Client.getOAuthClients(function (error, activeClients) {
if (error) return console.error(error);
$scope.activeClients = activeClients;