mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 13:41:10 +02:00
* Create app-footer component with tests * glimmerize vault route + controller * Add dev mode badge to new footer * Fix version on dashboard * update app-footer tests * update version title component * Handle case for chroot namespace fail on health check * cleanup * fix ent tests * add missing headers * extra version fetch on login success, clear version on logout and seal * Add coverage for clearing version on seal * rename isOSS to isCommunity * remove is-version helper * test version in footer on unseal flow * fix enterprise test * VAULT-21399 test coverage * VAULT-21400 test coverage
22 lines
508 B
JavaScript
22 lines
508 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
/**
|
|
* @module DashboardVaultVersionTitle
|
|
* DashboardVaultVersionTitle component are use to display the vault version title and the badges
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <Dashboard::VaultVersionTitle @version={{this.versionSvc}} />
|
|
* ```
|
|
*/
|
|
|
|
export default class DashboardVaultVersionTitle extends Component {
|
|
@service namespace;
|
|
}
|