mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
* Revert "UI: Remove custom service (#19925)" This reverts commitb04751d224
. * replace stickyInfo with options info * revert replacing custom stickyInfo * change flash message name to be consistent throughout application * make service imports consistent for k8 engine * replace stickyInfo with options info * Revert "change flash message name to be consistent throughout application" This reverts commit17de49894d
. * add comment --------- Co-authored-by: Chelsea Shaw <cshaw@hashicorp.com>
25 lines
582 B
JavaScript
25 lines
582 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Engine from '@ember/engine';
|
|
|
|
import loadInitializers from 'ember-load-initializers';
|
|
import Resolver from 'ember-resolver';
|
|
|
|
import config from './config/environment';
|
|
|
|
const { modulePrefix } = config;
|
|
|
|
export default class KubernetesEngine extends Engine {
|
|
modulePrefix = modulePrefix;
|
|
Resolver = Resolver;
|
|
dependencies = {
|
|
services: ['router', 'store', 'secret-mount-path', 'flash-messages'],
|
|
externalRoutes: ['secrets'],
|
|
};
|
|
}
|
|
|
|
loadInitializers(KubernetesEngine, modulePrefix);
|