mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 19:47:02 +02:00
* adds pagination to ldap roles list view * fixes issue with list not refreshing on ldap roles delete
11 lines
235 B
TypeScript
11 lines
235 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Controller from '@ember/controller';
|
|
|
|
export default class LdapRolesController extends Controller {
|
|
queryParams = ['pageFilter', 'currentPage'];
|
|
}
|