mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 21:21:06 +02:00
* replace all injects with import syntax * Delete ui/app/components/identity/_popup-base.js
15 lines
316 B
JavaScript
15 lines
316 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@ember/component';
|
|
import { service } from '@ember/service';
|
|
import layout from '../templates/components/header-scope';
|
|
|
|
export default Component.extend({
|
|
layout,
|
|
tagName: '',
|
|
secretMountPath: service(),
|
|
});
|