mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-11 17:17:01 +02:00
* rename store to pagination, remove store extension * initial update of service test * remove superfluous helper * replace store with pagination service in main app * update kmip engine syntax * add pagination to kmip engine * update to pagination in config-ui engine * update sync engine to use pagination service * use pagination service in kv engine * use pagination service in ldap engine * use pagination in pki engine * update renaming clearDataset functions * link to jira VAULT-31721 * remove comment
33 lines
649 B
JavaScript
33 lines
649 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
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 ConfigUiEngine extends Engine {
|
|
modulePrefix = modulePrefix;
|
|
Resolver = Resolver;
|
|
dependencies = {
|
|
services: [
|
|
'auth',
|
|
'store',
|
|
'pagination',
|
|
'flash-messages',
|
|
'namespace',
|
|
'app-router',
|
|
'version',
|
|
'custom-messages',
|
|
],
|
|
};
|
|
}
|
|
|
|
loadInitializers(ConfigUiEngine, modulePrefix);
|