mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 07:01:09 +02:00
* 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
20 lines
602 B
Handlebars
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> |