mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
* add configuration tab for ldap, okta, radius auth methods * add tests to assert that configuration tabs show on supported auth methods
12 lines
429 B
JavaScript
12 lines
429 B
JavaScript
import { create, clickable, visitable, collection } from 'ember-cli-page-object';
|
|
import fields from '../../../components/form-field';
|
|
import flashMessage from '../../../components/flash-message';
|
|
|
|
export default create({
|
|
...fields,
|
|
tabs: collection('[data-test-auth-section-tab]'),
|
|
visit: visitable('/vault/settings/auth/configure/:path/:section'),
|
|
flash: flashMessage,
|
|
save: clickable('[data-test-save-config]'),
|
|
});
|