Files
vault/ui/app/adapters/server.js
2024-01-02 10:35:40 -08:00

25 lines
601 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import ApplicationAdapter from './application';
const fetchUrl = '/v1/sys/storage/raft/configuration';
export default ApplicationAdapter.extend({
urlForFindAll() {
return fetchUrl;
},
urlForQuery() {
return fetchUrl;
},
urlForDeleteRecord() {
return '/v1/sys/storage/raft/remove-peer';
},
deleteRecord(store, type, snapshot) {
const server_id = snapshot.attr('nodeId');
const url = '/v1/sys/storage/raft/remove-peer';
return this.ajax(url, 'POST', { data: { server_id } });
},
});