mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-20 06:01:10 +02:00
* fix cluster/config actually saving doh * add mkdown copy * add acme config to edit form * fix tests * add empty state capabilities test * add acceptance test for mixed permission save * swap order to match form * update copy * make markdown changes * fix y
16 lines
372 B
JavaScript
16 lines
372 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { encodePath } from 'vault/utils/path-encoding-helpers';
|
|
import PkiConfigBaseAdapter from './base';
|
|
|
|
export default class PkiConfigAcmeAdapter extends PkiConfigBaseAdapter {
|
|
namespace = 'v1';
|
|
|
|
_url(backend) {
|
|
return `${this.buildURL()}/${encodePath(backend)}/config/acme`;
|
|
}
|
|
}
|