mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 17:52:32 +00:00
* Update mirage config * Update ember-cli-mirage and imports * bump ember-cli-mirage to latest * add lock file
15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { Factory } from 'miragejs';
|
|
|
|
export default Factory.extend({
|
|
name: (i) => `library-${i}`,
|
|
service_account_names: () => ['fizz@example.com', 'buzz@example.com'],
|
|
ttl: '10h',
|
|
max_ttl: '20h',
|
|
disable_check_in_enforcement: false,
|
|
});
|