mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 19:17:02 +02:00
* setup PKI Ember engine * clean up SecretListHeader and add documentation. * move secret-list-header to addon folder * move options-for-backend helper * fix all for SecretListHeader to work * use secretListHeaderTab by moving to adodn. * add overview empty state * clean up * remove secret-list-header and secret-list-header-tab changes to move to another pr * more cleanup * update syntax with newer guides * good idea jordan
12 lines
158 B
JavaScript
12 lines
158 B
JavaScript
/* eslint-env node */
|
|
'use strict';
|
|
|
|
module.exports = function (environment) {
|
|
let ENV = {
|
|
modulePrefix: 'pki',
|
|
environment,
|
|
};
|
|
|
|
return ENV;
|
|
};
|