mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 04:27:02 +02:00
* change currentPage to page to be consistent * replace pagination in listview and always show pagination * wip * fix query param issue * access identity aliases index * leases done and dusted * policies and secrets backend * remove list Pagination * changelog
11 lines
228 B
TypeScript
11 lines
228 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', 'page'];
|
|
}
|