mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 23:21:08 +02:00
* setup version card * folder restructure * Adding todos, removing test Co-authored-by: Dan Rivera <dan.rivera@hashicorp.com>
25 lines
571 B
TypeScript
25 lines
571 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import SecretsEngineResource from 'vault/resources/secrets/engine';
|
|
interface Args {
|
|
model: SecretsEngineResource;
|
|
}
|
|
|
|
export default class Metadata extends Component<Args> {
|
|
constructor(owner: unknown, args: Args) {
|
|
super(owner, args);
|
|
}
|
|
|
|
updatePath() {
|
|
// This method can be used to update the path of the secrets engine.
|
|
}
|
|
|
|
updateAccessor() {
|
|
// This method can be used to update the accessor of the secrets engine.
|
|
}
|
|
}
|