vault/ui/app/adapters/ldap/config.js

15 lines
353 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import SecretsEnginePathAdapter from 'vault/adapters/secrets-engine-path';
export default class LdapConfigAdapter extends SecretsEnginePathAdapter {
path = 'config';
async rotateRoot(backend) {
return this.ajax(this._getURL(backend, 'rotate-root'), 'POST');
}
}