mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 21:21:06 +02:00
14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
import Component from '@glimmer/component';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
export default class SidebarNavClusterComponent extends Component {
|
|
@service currentCluster;
|
|
@service version;
|
|
@service auth;
|
|
@service namespace;
|
|
|
|
get cluster() {
|
|
return this.currentCluster.cluster;
|
|
}
|
|
}
|