mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 19:47:02 +02:00
* make cross-sign component * remove type from obj-list-input * finish skeleton of component * handle change on init * finish cross-sign form * add cancel transition * update pki/issuer adapter to accept backend passed from adapterOptions * first draft of cross-signing issuers component * refactor to accommodate listing signed certs * changes to config adapter and model, likely will need to revert and manually add to pki/action * add args to infotooltip, move header to cross-sign route * use pki/action model * move header to route file * finish displaying signed certificates * finish styling * add issuer id to cross-sign breadcrumbs * add parsed cert data to requests * add status count * add error banner back
31 lines
698 B
JavaScript
31 lines
698 B
JavaScript
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 PkiEngine extends Engine {
|
|
modulePrefix = modulePrefix;
|
|
Resolver = Resolver;
|
|
dependencies = {
|
|
services: [
|
|
'auth',
|
|
'download',
|
|
'flash-messages',
|
|
'namespace',
|
|
'path-help',
|
|
'router',
|
|
'secret-mount-path',
|
|
'store',
|
|
'version',
|
|
'wizard',
|
|
],
|
|
externalRoutes: ['secrets', 'secretsListRoot', 'secretsListRootConfiguration', 'externalMountIssuer'],
|
|
};
|
|
}
|
|
|
|
loadInitializers(PkiEngine, modulePrefix);
|