mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-30 02:02:43 +00:00
* Update mirage config * Update ember-cli-mirage and imports * bump ember-cli-mirage to latest * add lock file
13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { Factory } from 'miragejs';
|
|
|
|
export default Factory.extend({
|
|
feature_flags() {
|
|
return []; // VAULT_CLOUD_ADMIN_NAMESPACE
|
|
},
|
|
});
|