15 lines
358 B
JavaScript
15 lines
358 B
JavaScript
|
import ApplicationAdapter from './application';
|
||
|
|
||
|
export default ApplicationAdapter.extend({
|
||
|
getStatusUrl(mode) {
|
||
|
return this.buildURL() + `/replication/${mode}/status`;
|
||
|
},
|
||
|
|
||
|
fetchStatus(mode) {
|
||
|
let url = this.getStatusUrl(mode);
|
||
|
return this.ajax(url, 'GET', { unauthenticated: true }).then(resp => {
|
||
|
return resp.data;
|
||
|
});
|
||
|
},
|
||
|
});
|