2023-03-15 16:00:52 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2023-03-17 15:13:54 +00:00
|
|
|
import Component from '@glimmer/component';
|
2018-04-03 14:16:57 +00:00
|
|
|
|
2023-03-17 15:13:54 +00:00
|
|
|
export default class UpgradePage extends Component {
|
|
|
|
get minimumEdition() {
|
|
|
|
return this.args.minimumEdition || 'Vault Enterprise';
|
|
|
|
}
|
|
|
|
get title() {
|
|
|
|
return this.args.title || 'Vault Enterprise';
|
|
|
|
}
|
|
|
|
|
|
|
|
get featureName() {
|
|
|
|
return this.title === 'Vault Enterprise' ? 'this feature' : this.title;
|
|
|
|
}
|
|
|
|
}
|