mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 19:17:58 +00:00
14 lines
291 B
JavaScript
14 lines
291 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import ApplicationAdapter from '../application';
|
|
export default class KvConfigAdapter extends ApplicationAdapter {
|
|
namespace = 'v1';
|
|
|
|
urlForFindRecord(id) {
|
|
return `${this.buildURL()}/${id}/config`;
|
|
}
|
|
}
|