vault/ui/app/components/dashboard/vault-version-title.js
Chelsea Shaw cb217388d4
UI: handle reduced disclosure endpoints (#24262)
* 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
2023-12-04 14:28:16 -06:00

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;
}