mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
14 lines
334 B
JavaScript
14 lines
334 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { alias } from '@ember/object/computed';
|
|
import { inject as service } from '@ember/service';
|
|
import Controller from '@ember/controller';
|
|
|
|
export default Controller.extend({
|
|
rm: service('replication-mode'),
|
|
replicationMode: alias('rm.mode'),
|
|
});
|