diff --git a/public/app/features/admin/partials/users.html b/public/app/features/admin/partials/users.html
index 9122300cc62..21346b92aa7 100644
--- a/public/app/features/admin/partials/users.html
+++ b/public/app/features/admin/partials/users.html
@@ -30,27 +30,27 @@
-
+
|
-
+
{{user.login}}
|
-
+
{{user.email}}
|
-
+
{{user.lastSeenAtAge}}
|
-
+
|
diff --git a/public/app/routes/routes.ts b/public/app/routes/routes.ts
index b21243984bc..8d351b1cbb4 100644
--- a/public/app/routes/routes.ts
+++ b/public/app/routes/routes.ts
@@ -6,7 +6,6 @@ import CreateFolderCtrl from 'app/features/folders/CreateFolderCtrl';
import FolderDashboardsCtrl from 'app/features/folders/FolderDashboardsCtrl';
import DashboardImportCtrl from 'app/features/manage-dashboards/DashboardImportCtrl';
import LdapPage from 'app/features/admin/ldap/LdapPage';
-import LdapUserPage from 'app/features/admin/ldap/LdapUserPage';
import config from 'app/core/config';
import { route, ILocationProvider } from 'angular';
// Types
@@ -284,12 +283,6 @@ export function setupAngularRoutes($routeProvider: route.IRouteProvider, $locati
templateUrl: 'public/app/features/admin/partials/edit_user.html',
controller: 'AdminEditUserCtrl',
})
- .when('/admin/users/ldap/edit/:id', {
- template: '',
- resolve: {
- component: () => LdapUserPage,
- },
- })
.when('/admin/orgs', {
templateUrl: 'public/app/features/admin/partials/orgs.html',
controller: 'AdminListOrgsCtrl',