open-vault/ui/app/services/current-cluster.js

15 lines
234 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import Service from '@ember/service';
2018-04-03 14:16:57 +00:00
export default Service.extend({
2018-04-03 14:16:57 +00:00
cluster: null,
setCluster(cluster) {
this.set('cluster', cluster);
},
});