mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
17 lines
507 B
JavaScript
17 lines
507 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
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]'),
|
|
});
|