mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-10 00:27:02 +02:00
23 lines
385 B
JavaScript
23 lines
385 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-env node */
|
|
/* eslint-disable n/no-extraneous-require */
|
|
'use strict';
|
|
|
|
const { buildEngine } = require('ember-engines/lib/engine-addon');
|
|
|
|
module.exports = buildEngine({
|
|
name: 'ldap',
|
|
|
|
lazyLoading: Object.freeze({
|
|
enabled: false,
|
|
}),
|
|
|
|
isDevelopingAddon() {
|
|
return true;
|
|
},
|
|
});
|