mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 05:31:10 +02:00
* glimmerize application route * glimmerize application controller * ts application controller * stabilize replication test
17 lines
512 B
TypeScript
17 lines
512 B
TypeScript
/**
|
|
* 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';
|
|
import type AuthService from 'vault/vault/services/auth';
|
|
import type StoreService from 'vault/services/store';
|
|
|
|
export default class ApplicationController extends Controller {
|
|
@service declare readonly auth: AuthService;
|
|
@service declare readonly store: StoreService;
|
|
env = config.environment;
|
|
}
|