diff --git a/src/views/users.html b/src/views/users.html index 6082b7c09..28834319c 100644 --- a/src/views/users.html +++ b/src/views/users.html @@ -461,11 +461,11 @@ -
diff --git a/src/views/users.js b/src/views/users.js index 3d1363af4..49b7950b4 100644 --- a/src/views/users.js +++ b/src/views/users.js @@ -9,6 +9,9 @@ angular.module('Application').controller('UsersController', ['$scope', '$location', '$timeout', 'Client', function ($scope, $location, $timeout, Client) { Client.onReady(function () { if (!Client.getUserInfo().admin) $location.path('/'); }); + // TODO remove this later when we know with which edtion to show + $scope.showExternalLdap = $location.search().ldap; + $scope.ready = false; $scope.users = []; $scope.usersById = [];