mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 21:21:06 +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
23 lines
602 B
JavaScript
23 lines
602 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Engine from 'ember-engines/engine';
|
|
import loadInitializers from 'ember-load-initializers';
|
|
import Resolver from 'ember-resolver';
|
|
import config from './config/environment';
|
|
|
|
const { modulePrefix } = config;
|
|
|
|
export default class LdapEngine extends Engine {
|
|
modulePrefix = modulePrefix;
|
|
Resolver = Resolver;
|
|
dependencies = {
|
|
services: ['app-router', 'store', 'pagination', 'secret-mount-path', 'flash-messages', 'auth'],
|
|
externalRoutes: ['secrets'],
|
|
};
|
|
}
|
|
|
|
loadInitializers(LdapEngine, modulePrefix);
|