mirror of
https://github.com/hashicorp/vault.git
synced 2026-03-24 03:14:57 -04:00
* VAULT-41962 Updated tools sidebar * Fix failing tests and add copyright header * Update capitailization of nav item titles * Update tools breadcrumbs * Add comments * Fix failing tests! * Update ui/tests/acceptance/config-ui/messages/messages-test.js * Update ui/lib/core/addon/components/sidebar/nav/tools.ts * Add more nav tests for custom messages * Update test name --------- Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
24 lines
608 B
JavaScript
24 lines
608 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Engine from 'ember-engines/engine';
|
|
import loadInitializers from 'ember-load-initializers';
|
|
import Resolver from './resolver';
|
|
import config from './config/environment';
|
|
|
|
const { modulePrefix } = config;
|
|
/* eslint-disable ember/avoid-leaking-state-in-ember-objects */
|
|
const Eng = Engine.extend({
|
|
modulePrefix,
|
|
Resolver,
|
|
dependencies: {
|
|
services: ['auth', 'flash-messages', 'namespace', 'app-router', 'version'],
|
|
externalRoutes: ['vault'],
|
|
},
|
|
});
|
|
|
|
loadInitializers(Eng, modulePrefix);
|
|
|
|
export default Eng;
|