mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 21:21:06 +02:00
* update kmip/role model and adapter * New KMIP role form component * cleanup on kmip role adapter/model * fix role details view * update tests to check for kmip role form and details validity * cleanup * Add kmip-role-fields test * add headers, remove old component * Address PR comments
28 lines
533 B
JavaScript
28 lines
533 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-env node */
|
|
/* eslint-disable ember/avoid-leaking-state-in-ember-objects */
|
|
/* eslint-disable n/no-extraneous-require */
|
|
'use strict';
|
|
|
|
const EngineAddon = require('ember-engines/lib/engine-addon');
|
|
|
|
module.exports = EngineAddon.extend({
|
|
name: 'kmip',
|
|
|
|
lazyLoading: {
|
|
enabled: true,
|
|
},
|
|
|
|
babel: {
|
|
plugins: [require.resolve('ember-concurrency/async-arrow-task-transform')],
|
|
},
|
|
|
|
isDevelopingAddon() {
|
|
return true;
|
|
},
|
|
});
|