20 lines
440 B
JavaScript
20 lines
440 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import ApplicationAdapter from './application';
|
|
|
|
export default ApplicationAdapter.extend({
|
|
getStatusUrl(mode) {
|
|
return this.buildURL() + `/replication/${mode}/status`;
|
|
},
|
|
|
|
fetchStatus(mode) {
|
|
const url = this.getStatusUrl(mode);
|
|
return this.ajax(url, 'GET', { unauthenticated: true }).then((resp) => {
|
|
return resp.data;
|
|
});
|
|
},
|
|
});
|