mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-20 06:01:10 +02:00
* replace all injects with import syntax * Delete ui/app/components/identity/_popup-base.js
14 lines
325 B
JavaScript
14 lines
325 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { alias } from '@ember/object/computed';
|
|
import { service } from '@ember/service';
|
|
import Controller from '@ember/controller';
|
|
|
|
export default Controller.extend({
|
|
rm: service('replication-mode'),
|
|
replicationMode: alias('rm.mode'),
|
|
});
|