mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 07:01:09 +02:00
* update ldap mirage scenario to allow check-in/check-out action * update libraries test to mount engine * update mirage, fix tests * update lease renew CLI command * fix test * update tests
14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { Model } from 'miragejs';
|
|
|
|
export default Model.extend({
|
|
account: '', // should match ID
|
|
library: '',
|
|
available: false,
|
|
borrower_client_token: undefined,
|
|
});
|