vault/ui/app/components/auth-method/configuration.hbs
Jordan Reimer 75e1108750
[UI] Ember Data Migration - Auth Method List/Config (#31203)
* updates auth method list and config views to use api service

* adds capabilities checks to auth methods route

* fixes auth method config tests

* updates SecretsEngine type to Mount

* updates listingVisibility value in config test

* adds missing copyright header
2025-07-08 11:50:38 -06:00

20 lines
602 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
}}
<div class="box is-fullwidth is-sideless is-paddingless is-marginless">
{{#if @method.directLoginLink}}
<InfoTableRow @alwaysRender={{true}} @label="UI login link">
<Hds::Copy::Snippet @textToCopy={{@method.directLoginLink}} />
</InfoTableRow>
{{/if}}
{{#each this.displayFields as |field|}}
<InfoTableRow
@alwaysRender={{not (is-empty-value (get @method field))}}
@label={{this.label field}}
@value={{this.value field}}
@formatTtl={{this.isTtl field}}
/>
{{/each}}
</div>