mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 07:01:09 +02:00
* build out snapshots index route * add card for loaded snapshot * add tests * lint fix and remove logs * use api enum * lint fix * remove extra imports * tidy * routing updates * update tests * update styling * improve types * lint * add copyright header * update capability check * pull out header * add copyright headers * update url * Update ui/app/routes/vault/cluster/recovery/snapshots/snapshot.ts Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com> * test + error handling updates * update details route and add integration tests * tidy tests and pull out header title * lint * test updates --------- Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com>
13 lines
327 B
TypeScript
13 lines
327 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { service } from '@ember/service';
|
|
import type VersionService from 'vault/services/version';
|
|
|
|
export default class Header extends Component {
|
|
@service declare readonly version: VersionService;
|
|
}
|