mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-23 07:31:09 +02:00
* replace all injects with import syntax * Delete ui/app/components/identity/_popup-base.js
15 lines
315 B
JavaScript
15 lines
315 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { service } from '@ember/service';
|
|
import Controller from '@ember/controller';
|
|
import config from '../config/environment';
|
|
|
|
export default Controller.extend({
|
|
env: config.environment,
|
|
auth: service(),
|
|
store: service(),
|
|
});
|